#include #include "Book.h" Book::Book(string theName, string theColor, float theThickness, bool closedOpen, int numPages) { status = closedOpen; color = theColor; name = theName; pages = numPages; thickness = theThickness; } int Book::getPages() { return pages; } void Book::close() { status = CLOSED; } Book::~Book() { cout << "Self-destruction underway ..." << endl; }