Guest User

Untitled

a guest
Jan 16th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. class Date {
  2. protected:
  3. int year;
  4. int month;
  5. int day;
  6. };
  7.  
  8. class Application {
  9.  
  10. Date* date;
  11. string FinalPoint;
  12. int destination;
  13.  
  14. };
  15.  
  16. class Date {
  17. friend class Application;
  18. protected:
  19. int year;
  20. int month;
  21. int day;
  22. };
Add Comment
Please, Sign In to add comment