Guest User

Person.hpp

a guest
Jun 9th, 2013
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #pragma once
  2. #include <ctime>
  3. #include "Name.hpp"
  4. typedef time_t Date;
  5.  
  6. class Person
  7. {
  8. public:
  9.     Name Name;
  10.     Date Birthday;
  11.  
  12.     Person(void);
  13.     Person(::Name name);
  14.     Person(const char* name);
  15.  
  16.     unsigned int Age(void);
  17. };
Advertisement
Add Comment
Please, Sign In to add comment