#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