/////////////////////////////////////////////////////////// // ProductB2.cpp // Implementation of the Class ProductB2 // Created on: 02-十月-2014 15:04:20 // Original author: colin /////////////////////////////////////////////////////////// #include "ProductB2.h" #include using namespace std; ProductB2::ProductB2(){ } ProductB2::~ProductB2(){ } void ProductB2::eat(){ cout << "eat Product B2" << endl; }