#ifndef _ORDER1_H_ #define _ORDER1_H_ #include using namespace std; #include "pizza1.H" const int MaxPizzas = 5; class Order { public: Order ( ); // default constructor // mutators void SetName (string n); void SetPhone (string ph); void SetNrSodas (int s); void SetNrBreadSticks (int s); void SetPizza (Pizza p); // overloaded output operator friend ostream& operator<< (ostream& out, const Order& order); private: string name; string phone; int nrSodas; int nrBreadSticks; int nrPizzas; double sodaPrice; double bsPrice; Pizza pizzas [ MaxPizzas ]; }; #endif