2019-07-06 14:52:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "Query.h"
|
|
|
|
|
2019-07-06 16:32:00 +00:00
|
|
|
|
2019-07-08 20:57:09 +00:00
|
|
|
using std::cin;
|
2019-07-06 16:32:00 +00:00
|
|
|
|
|
|
|
void interface(vector<Park_spot>& spots);
|
|
|
|
void interface_member(vector<Park_spot>& spots);
|
|
|
|
void interface_admin(vector<Park_spot>& spots);
|
2019-07-08 20:57:09 +00:00
|
|
|
void park(Customer& c, vector<Park_spot>& spots);
|
|
|
|
void new_customer();
|
|
|
|
void new_parkspot(vector<Park_spot>& spots);
|