#include "Query.h" using std::cin; //interface functions void interface(vector& spots); void interface_member(vector& spots, Customer& c); void interface_admin(vector& spots); void park(Customer& c, vector& spots); void new_customer(); void new_admin(); void new_parkspot(vector& spots); void edit_information(Customer&); // time creation pair create_month_period(); pair 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();