#ifndef BANKACCOUNT_H #define BANKACCOUNT_H #include using namespace std; class bankaccount { public: bankaccount(string acc, double bal); string getAccount() const; double getBalance() const; void deposit(double amount); void withdraw(double amount); private: string account; double balance; }; // Do not forget the semicolon! #endif