#ifndef _mp3_h_ #define _mp3_h_ // An MP3 representation. #include using namespace std; class MP3 { public: MP3() {} MP3(const string& artist, const string& title) : artist_(artist), title_(title) {} const string& get_artist() const { return artist_; } const string& get_title() const { return title_; } private: string artist_; string title_; }; #endif