#ifndef MEDIAINFO_H #define MEDIAINFO_H #include #include #include using namespace std; /////////////////////////////////////////////////// // MediaInfo // //purpose: MediaInfo stores an item's information //such as its use, its title, who owns it, price, etc /////////////////////////////////////////////////// class MediaInfo { public: MediaInfo(); string Business; string Price; string Name; string Type; string Author; string Owner; }; #endif