From f2d1216153123a3fbee6af8e7a0ad06a3577f216 Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sat, 27 Jun 2020 14:11:01 +0300 Subject: Finished implementation of closing and opening bank accounts. --- CPP/BABS/BankAccount.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'CPP/BABS/BankAccount.h') 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 -- cgit v1.2.3