#include #define CLOSED false #define OPEN true class Book { int pages; string color; float thickness; bool status; string name; public: int getName(); int getPages(); float getThickness(); bool isOpen() { return status; } void close(); void open(); // constructor Book(string theName, string theColor, float theThickness, bool closedOpen, int numPages); ~Book(); };