Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pragma once
- #include <ctime>
- #include "Name.hpp"
- typedef time_t Date;
- class Person
- {
- public:
- Name Name;
- Date Birthday;
- Person(void);
- Person(::Name name);
- Person(const char* name);
- unsigned int Age(void);
- };
Advertisement
Add Comment
Please, Sign In to add comment