diff options
Diffstat (limited to 'CPP/BABS/BankAccount.h')
| -rw-r--r-- | CPP/BABS/BankAccount.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CPP/BABS/BankAccount.h b/CPP/BABS/BankAccount.h index 7e85b47..fbf808f 100644 --- a/CPP/BABS/BankAccount.h +++ b/CPP/BABS/BankAccount.h @@ -8,12 +8,16 @@ class BankAccount { public: BankAccount(); BankAccount(int); + int getId(); int getBalance(); + bool getCloseStatus(); + void deposit(int); int withdraw(int); std::string toString(); void close(); + void reopen(); }; #endif
\ No newline at end of file |
