2019-07-02 00:51:23 +00:00
|
|
|
#ifndef QUERY_H
|
|
|
|
#define QUERY_H
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Park_spot.h"
|
|
|
|
|
|
|
|
#include <array>
|
|
|
|
|
|
|
|
vector<Park_time> query_parktimes_for_customer(int cid);
|
|
|
|
|
|
|
|
vector<Customer> query_customer_with_name(string name);
|
|
|
|
Customer query_customer_with_id(int id);
|
|
|
|
|
2019-07-02 01:11:46 +00:00
|
|
|
// vector<Park_spot> query_all_parking_spots(); // used for initializing the parking spots at start of the program
|
|
|
|
vector<Park_spot> populate_spots();
|
|
|
|
|
2019-07-02 00:51:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // CUSTOMER_H
|