aboutsummaryrefslogtreecommitdiff
path: root/CPP/BABS/BankAccount.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/BABS/BankAccount.h')
-rw-r--r--CPP/BABS/BankAccount.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/CPP/BABS/BankAccount.h b/CPP/BABS/BankAccount.h
deleted file mode 100644
index fbf808f..0000000
--- a/CPP/BABS/BankAccount.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#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