diff --git a/mydate.h b/mydate.h new file mode 100644 index 0000000..48ecc10 --- /dev/null +++ b/mydate.h @@ -0,0 +1,14 @@ +#ifndef MYDATE_H__ +#define MYDATE_H__ + +class mydate +{ + int year, month, day; + +public: + mydate(int year_, int month_, int day_); + ~mydate(); + void print(); +}; + +#endif \ No newline at end of file