#ifndef BOOK_H #define BOOK_H #include class Book { public: Book( const string& a, const string& t ); inline const string& author() const { return author_; } inline const string& title() const { return title_; } void print() const; private: string author_; string title_; }; #endif