26 lines
684 B
C++
26 lines
684 B
C++
#include "Query.h"
|
|
|
|
|
|
using std::cin;
|
|
|
|
//interface functions
|
|
void interface(vector<Park_spot>& spots);
|
|
void interface_member(vector<Park_spot>& spots, Customer& c);
|
|
void interface_admin(vector<Park_spot>& spots);
|
|
void park(Customer& c, vector<Park_spot>& spots);
|
|
void new_customer();
|
|
void new_admin();
|
|
void new_parkspot(vector<Park_spot>& spots);
|
|
void edit_information(Customer&);
|
|
|
|
// time creation
|
|
pair<int, int> create_month_period();
|
|
pair<int, int> create_week_period();
|
|
|
|
// report functions
|
|
void report_single_spot(bool weekly = false);
|
|
void report_all_spots(bool weekly = false);
|
|
void report_customer(int customerID, bool weekly = false);
|
|
|
|
// confirmation function
|
|
bool confirm(); |