//FoodPlusPlus.h #ifndef FOODPLUSPLUS_H #define FOODPLUSPLUS_H #include #include #include"dishes.h" class FoodPlusPlus { public: FoodPlusPlus(); virtual ~FoodPlusPlus(); virtual void start_business_day(); virtual void close_for_the_day(); protected: static ofstream central_records; //store records here void take_an_order(); //process one customer Dish* theBill[20]; int numberofitems; //number of items for one customer float totalsales; //total dollar value for the day }; //end FoodPlusPlus #endif