//******************ITEM CLASS DECLARATION****************** #ifndef ITEM #define ITEM #include #include #include #include #include #include #include using namespace std; class item { private: string itemName; string type; string author; string owner; string price; string availability; bool ownerPrint; public: item(); //default constructor //Mutator member functions bool setItem (string newItem); bool setType (string newType); bool setAuthor (string newAuthor); bool setOwner (string newOwner); bool setPrice (string newPrice); bool setAvailability (string newAvailability); bool setOnwerPrint (bool newOwnerPrint); //Reporter member functions string getItem() const; string getType() const; string getAuthor() const; string getOwner() const; string getPrice() const; string getAvailability() const; //Print ostream& Print(ostream& out); }; #endif