#include #include #include "Book.h" #include "BookShelf.h" using namespace std; BookShelf::BookShelf(){} BookShelf::BookShelf(string type){this->type = type;} void BookShelf::setType(string type){this->type = type;} string BookShelf::getType(){return this->type;} void BookShelf::print(){cout<