diff --git a/person.h b/person.h new file mode 100644 index 0000000..97be296 --- /dev/null +++ b/person.h @@ -0,0 +1,17 @@ +#ifndef PERSON_H__ +#define PERSON_H__ + +#include "mydate.h" + +class person +{ + char name[20]; + mydate birthday, deathday; + +public: + person(const char *_name, int by, int bm, int bd, int dy, int dm, int dd); + ~person(); + void print(); +}; + +#endif \ No newline at end of file