-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsole.h.gcov
35 lines (35 loc) · 1.23 KB
/
Console.h.gcov
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
-: 0:Source:/Users/vanpana/Google Drive/Uni/An 1/Semestrul 2 - Mac/DSA/MultiMapSLL/UI/Console.h
-: 0:Graph:./CMakeFiles/Multimap.dir/main.gcno
-: 0:Data:./CMakeFiles/Multimap.dir/main.gcda
-: 0:Runs:4
-: 0:Programs:1
-: 1:#include "../Controller/Controller.h"
-: 2:#include "string.h"
-: 3:
-: 4:using namespace std;
-: 5:
-: 6:class Console
-: 7:{
-: 8:private:
-: 9: Controller *ctrl;
-: 10:
-: 11:public:
-: 12: Console() { }
8: 13: Console(Controller *ctrl) { this->ctrl = ctrl; }
-: 14:
-: 15: void printMenu();
-: 16:
-: 17: int getInteger();
-: 18: string getString();
-: 19:
-: 20: void addTransaction();
-: 21: void removeCustomer();
-: 22: void removeTransaction();
-: 23: void viewAllCustomerID();
-: 24: void viewCustomerTransactions();
-: 25:
-: 26: void loop();
-: 27: void runApp();
-: 28:
16: 29: ~Console() { delete ctrl; }
-: 30:};