Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #ifndef POBIPROJECT_CURRENTRENTSREPOSITORY_HPP
  2. #define POBIPROJECT_CURRENTRENTSREPOSITORY_HPP
  3.  
  4. #include "rent.hpp"
  5.  
  6. class CurrentRentsRepository
  7. {
  8. private:
  9.     std::list<Rent*> m_rents;
  10.  
  11. public:
  12.     bool createRent(Rent* rent);
  13. };
  14.  
  15.  
  16. #endif //POBIPROJECT_CURRENTRENTSREPOSITORY_HPP
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement