Advertisement
Guest User

Untitled

a guest
Apr 13th, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #ifndef PATIENTRECORD_H
  2. #define PATIENTRECORD_H
  3.  
  4. #include <iostream>
  5. #include <string>
  6. #include "date.h"
  7.  
  8. using namespace std;
  9.  
  10. class PatientRecord
  11. {
  12. public:
  13. PatientRecord(string, string, int, Date);
  14. PatientRecord();
  15. ~PatientRecord();
  16. PatientRecord & setFirstName(string);
  17. PatientRecord & setLastName(string);
  18. PatientRecord & setId(int);
  19. PatientRecord & setBirthday(Date);
  20. string getFirstName();
  21. string getLastName();
  22. int getId();
  23. Date getBirthday();
  24. private:
  25. string firstName;
  26. string lastName;
  27. int id;
  28. Date birthday;
  29. };
  30.  
  31. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement