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.

17 lines
256 B

#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