#ifndef BOOKSHELF_H #define BOOKSHELF_H #include #include using namespace std; class BookShelf{ private: string type; public: BookShelf(); BookShelf(string type); void setType(string type); string getType(); void print(); }; #endif