Advertisement
Guest User

cut

a guest
Nov 12th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #ifndef CUT_H
  2. #define CUT_H
  3.  
  4. #include "record.h"
  5.  
  6.  
  7. class Cut : Record
  8. {
  9. public:
  10.     Cut();
  11.     Cut(int, int, const std::string&, const std::string&,
  12.         const std::string&, QDate);
  13.     Cut(const Cut&);
  14.    
  15.     int getNumber() const;
  16.     void setNumber(int);
  17. private:
  18.     int number;
  19. };
  20.  
  21. #endif // CUT_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement