#ifndef LIB1H #define LIB1H #include using namespace std; extern int x; void f(); class date { int year; int month; int day; public: date() {cout << "lib1::date::date, x == " << x << "\n";} void print() const; }; #endif