//This file is clinton4.h #ifndef CLINTON4H #define CLINTON4H #include using namespace std; class clinton4 { int i; public: clinton4(int initial_i): i(initial_i) {} void f() const {hillary_t n = 10; cout << n << "\n";} enum month_type { january = 1, february, march }; typedef int hillary_t; class bill; }; class clinton4::bill { int j; public: bill(int initial_j): j(initial_j) {} void g() const; }; #endif