14 lines
312 B
C++
14 lines
312 B
C++
|
|
|
|
#include "Query.h"
|
|
|
|
|
|
using std::cin;
|
|
|
|
void interface(vector<Park_spot>& spots);
|
|
void interface_member(vector<Park_spot>& spots);
|
|
void interface_admin(vector<Park_spot>& spots);
|
|
void park(Customer& c, vector<Park_spot>& spots);
|
|
void new_customer();
|
|
void new_parkspot(vector<Park_spot>& spots);
|
|
void new_admin(); |