Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #include <iostream>;
  2. #include <cctype>;
  3. #include <cstdlib>;
  4. #include "Library/NewDisplayTime.h";
  5. using namespace std;
  6.  
  7. void read_hour(istream& ins, int& the_hour);
  8. void read_minute(istream& ins, int& the_minute);
  9. void digit_to_int(char c);
  10.  
  11. bool operator ==(const DigitalTime& time1, const DigitalTime& time2) {
  12. return (time1.hour == time2.hour && time1.minute == time2.minute);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement