14 lines
325 B
C++
14 lines
325 B
C++
|
|
|
|
#include "Query.h"
|
|
|
|
|
|
using std::cin;
|
|
|
|
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); |