13 lines
294 B
C++
13 lines
294 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); |