| 1234567891011121314151617 |
- #ifndef _LIBRARY_H
- #define _LIBRARY_H
- #include "Book.h"
- class Library {
- public:
- Library(); // constructor
- int getBookNum(); // public function to access private int
- void printTitles(); // prints book titles (untested)
-
- private:
- Book *b; // pointer to array of books
- int bookNum; // size of book array
- };
- #endif
|