Guest User

Untitled

a guest
Feb 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. #ifndef CRA_ACCOUNT
  2. #define CRA_ACCOUNT
  3. #include <iostream>
  4.  
  5. #define max_name_length 40
  6. #define min_sin 100000000
  7. #define max_sin 999999999
  8.  
  9. namespace sict
  10. {
  11. class CRA_Account
  12. {
  13.  
  14. char Family_name[max_name_length];
  15. char Given_name[max_name_length];
  16. int SIN_number;
  17.  
  18. public:
  19. void set(const char[], const char[], int);
  20. bool isEmpty() const;
  21. void display() const;
  22.  
  23.  
  24. };
  25. }
  26.  
  27. #endif
Add Comment
Please, Sign In to add comment