#ifndef QUERY_H #define QUERY_H #pragma once #include "Park_spot.h" #include vector query_parktimes_for_customer(int cid); vector query_customer_with_name(string name); Customer query_customer_with_id(int id); // vector query_all_parking_spots(); // used for initializing the parking spots at start of the program vector populate_spots(); #endif // CUSTOMER_H