//This file is clinton3.h #ifndef CLINTON3H #define CLINTON3H #include using namespace std; class clinton3 { int i; public: clinton3(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 clinton3::bill { int j; public: bill(int initial_j): j(initial_j) {} void g() const {cout << j << "\n";} }; #endif