Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #ifndef TIMESPAN_H
  2. #define TIMESPAN_H
  3.  
  4. #include <iostream>
  5. #include <iomanip>
  6.  
  7. class TimeSpan {
  8. public:
  9.     unsigned int hours;
  10.     unsigned int minutes; // [0 .. 59]
  11.     unsigned int seconds; // [0 .. 59]
  12.     // gettery  TODO CONST !!!
  13.  
  14.     TimeSpan(unsigned int seconds);
  15.     void print();
  16.  
  17.  
  18. };
  19.  
  20. #endif // TIMESPAN_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement