-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShared_Variables.hpp
More file actions
48 lines (43 loc) · 780 Bytes
/
Shared_Variables.hpp
File metadata and controls
48 lines (43 loc) · 780 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
47
48
#ifndef Shared_Variables
#define Shared_Variables
class Admin;
class Guest;
class Customer;
class UniversityList;
class CustomerList;
class FeedbackList;
struct UniversityNode;
struct CustomerNode;
struct FeedbackNode;
extern Admin admin;
extern Guest guest;
extern Customer loginCustomer;
extern UniversityList uniList;
extern CustomerList customerList;
extern FeedbackList feedbackList;
extern UniversityList tempUniversityList;
enum class FieldName
{
AR_FSR_ER_SCORE,
RANK,
INSTITUTION_NAME,
LOCATION,
AR_RANK,
ER_RANK,
FSR_RANK,
CPF_RANK,
IFR_RANK,
ISR_RANK,
IRN_RANK,
GER_RANK,
AR_SCORE,
ER_SCORE,
FSR_SCORE,
CPF_SCORE,
IFR_SCORE,
ISR_SCORE,
IRN_SCORE,
GER_SCORE,
SCORE_SCALED
};
#endif