Guest User

Untitled

a guest
Apr 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #ifndef MAINMENU_H
  2. #define MAINMENU_H
  3.  
  4. #include "BookCollection.h"
  5. #include <iostream>
  6. #include <vector>
  7. #include "bookdata.h"
  8.  
  9. using namespace std;
  10.  
  11. class Menu
  12. {
  13. private:
  14. // Pointer to a bookCollection object
  15. static BookCollection *books;
  16. public:
  17. static void cashier();
  18. static void invMenu();
  19. static void reports();
  20. // this function will be called to initialize the Menu
  21. // After the book collection object has been created
  22. static initialize(BookCollection *b){ books = b; }
  23. };
  24. #endif
Add Comment
Please, Sign In to add comment