You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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 |