im a new student to c++ and classes has really confused me. the program is creating a bank account. i have already completed the header file but the implementation file has be confused. can someone please help me with this. thanks!
here is my header file:
#include <iostream>
using namespace std;
class BankAccount
{
private:
string id;
double balance;
string password;
public:
BankAccount();
BankAccount(string,double,string);
string getID();
double getBalance();
void setID(string);
void setPassword(string);
bool deposit(double);
bool withdrawal(double);
void addInterest();
bool equals(BankAccount);
string getPassword();
}