#ifndef BOOKCLASS_H #define BOOKCLASS_H #include using namespace std; #define SIZE inputsize #define AUTHORS book[inputcount].inputauthors class booktype { public: void showbook(); void settitle(); bool setequaltitle(string test); void setstocknum(); void updatestocknum(); void returnstock(); void setpub(); bool setequalpub(string test); void setisbn(); bool setequalisbn(string test); void setprice(); void setequalprice(); void setauthor(); bool setequalauthor(string test); booktype(); ~booktype(); string *authorarray; double bprice; int bstock; int bauthoramt; string btitle; string bpublisher; string bisbn; int inputauthors; private: void showstocknum(); void showauthor(); void showprice(); void showpub(); void showtitle(); void showisbn(); }; #endif