aboutsummaryrefslogtreecommitdiff
path: root/C++/BABS/BankAccount.h
diff options
context:
space:
mode:
Diffstat (limited to 'C++/BABS/BankAccount.h')
-rw-r--r--C++/BABS/BankAccount.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/C++/BABS/BankAccount.h b/C++/BABS/BankAccount.h
new file mode 100644
index 0000000..fbf808f
--- /dev/null
+++ b/C++/BABS/BankAccount.h
@@ -0,0 +1,23 @@
+#ifndef TEST_BANKACCOUNT
+#define TEST_BANKACCOUNT
+#include <string>
+
+class BankAccount {
+ int id, balance;
+ bool closed;
+ 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