#ifndef BIRTHDAY7_H_ #define BIRTHDAY7_H_ #include using namespace std; class Birthday { public: Birthday(); Birthday(int y, int m, int d); ~Birthday(); friend ostream& operator <<(ostream& outs, const Birthday& bd); private: int year, month, day; }; #endif