Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1.  
  2. #ifndef CPP_LABS_BOOKFUNCTION_H
  3. #define CPP_LABS_BOOKFUNCTION_H
  4.  
  5. #include "../model/Book.h"
  6. const int SIZE_AR_FIRST = 10;
  7. const int SIZE_POSITION = -2;
  8. const int COUNT_POSITION = -1;
  9.  
  10. void ** init();
  11.  
  12. bool deleteBook(void ** &books, int position);
  13.  
  14. void addBook(void ** &books, Book *book);
  15.  
  16. void showAll(void ** &books);
  17.  
  18. void expend(void ** &oldBooks);
  19.  
  20. void trim(void ** &oldBooks);
  21.  
  22. #endif //CPP_LABS_BOOKFUNCTION_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement