#ifndef BANKH #define BANKH #include using namespace std; class bank { int j; public: bank(int initial_j): j(initial_j) {} void deposit() const {cout << this << " Please take a deposit slip.\n";} void draw() const {cout << this << " Your account is overdrawn.\n";} }; #endif