Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #ifndef LIBRARY_H
  2. #define LIBRARY_H
  3.  
  4. #include <vector>
  5. #include "Book.h"
  6. #include "Customer.h"
  7.  
  8. class Library
  9. {
  10. public:
  11.     Library();
  12.     ~Library();
  13.     start();
  14.    
  15. private:
  16.     std::vector<Book> books;
  17.     std::vector<Customer> customers;
  18. };
  19.  
  20. #endif // LIBRARY_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement