Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #ifndef CRANE_H
  2. #define CRANE_H
  3.  
  4. int const ROWS = 3;
  5. int const HEIGHT = 2;
  6.  
  7. class Crane
  8. {
  9. private:
  10. int places[ROWS][HEIGHT];
  11. int row;
  12. int container;
  13. public:
  14. Crane();
  15. ~Crane();
  16. bool isParked();
  17. bool isLoaded();
  18. bool isUnloaded();
  19. bool isWaitingEmpty();
  20. bool isWaitingFull();
  21. };
  22.  
  23. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement