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