forked from illgami784/2019-2-Data-Structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplication.h
112 lines (94 loc) · 1.83 KB
/
Application.h
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#pragma once
#include "Admin.h"
using namespace std;
class Application {
public:
/**
* @brief 기본 생성자입니다.
* @post open = false
*/
Application();
/**
* @brief 관리 프로그램 시작
* @pre open의 값이 설정되있어야 합니다.
* @post open값에 따라 다른 메뉴 실행
*/
void run();
void open();
void close();
/**
* @brief 명령어를 입력받는 함수
* @post m_Command가 입력한 값이 된다.
* @return 성공시 true 실패시 false
*/
bool getOpenCommand();
/**
* @brief 명령어를 입력받는 함수
* @post m_Command가 입력한 값이 된다.
* @return 성공시 true 실패시 false
*/
bool getCloseCommand();
/**
* @brief open 여부를 리턴한다.
* @return open 리턴
*/
bool isItOpen() const;
/**
* @brief 해당하는 id의 Ride의 상세 정보를 출력한다.
* @pre rideList에 해당하는 id의 Ride가 존재해야함
*/
void printRideInfo(int _id) const;
/**
* @brief 모른 Ride의 대략적인 정보를 출력한다.
* @pre rideList에 Ride가 하나라도 존재해야함
*/
void printAllRideInfo() const;
/**
* @brief 사용자의 정보 조회?
* @pre
* @post
* @return 성공시 true 실패시 false
*/
bool searchAllUser();
/**
* @brief rideList에서 검색한다.
* @pre
* @post
* @return 성공시 true 실패시 false
*/
bool searchRide();
/**
* @brief rideList에 Ride를 추가한다.
* @pre
* @post
* @return 성공시 true 실패시 false
*/
bool addRide();
/**
* @brief rideList의 Ride를 삭제한다.
* @pre
* @post
* @return 성공시 true 실패시 false
*/
bool deleteRide();
/**
* @brief rideList의 Ride의 정보를 변경한다.
* @pre
* @post
* @return 성공시 true 실패시 false
*/
bool updateRide();
/**
* @brief 열렸을 때의 정보를 출력한다.
* @pre
* @post
* @return
*/
void printTodayInfo();
private:
int m_Command; //명령어 입력에 사용
int OpenTime; //개장한 시간 통계에 사용?
int CloseTime; //폐장한 시간 통계에 사용?
bool isOpen; //개장 여부
Admin admin; //놀이동산 Admin
};