#ifndef SSTREAM_H #define SSTREAM_H #include using std::string; #endif #ifndef FSTREAM_H #define FSTREAM_H #include using std::ofstream; #endif class multimedia { public : //Constructors multimedia(); multimedia( string aname, string atype, string anauthor, string anowner, double aprice, string astatus); //Accessors string getname( ) const; //returns the name of the item string gettype( ) const; //returns the type of the item string getauthor( ) const; //returns the author of the item string getowner( ) const; //returns the owner of the item double getprice( ) const; //returns the price of the item string getstatus( ) const; //returns the status of the item void print( ofstream& out, bool displayowner) const; //prints the item to a file private : string name, type, author, owner, status; double price; };