2019-07-02 00:51:23 +00:00
|
|
|
#include "headers/Query.h"
|
2019-06-27 03:55:27 +00:00
|
|
|
|
2019-07-01 23:42:41 +00:00
|
|
|
#include <chrono>
|
2019-06-30 01:30:47 +00:00
|
|
|
#include <thread>
|
|
|
|
|
2019-07-01 23:42:41 +00:00
|
|
|
|
|
|
|
using namespace std::chrono;
|
2019-07-02 00:18:52 +00:00
|
|
|
|
2019-06-27 03:55:27 +00:00
|
|
|
/*
|
|
|
|
Code strucure like this:
|
|
|
|
class declarations zijn in /headers/class_naam.h, en definitions van de member
|
|
|
|
functs in /class_naam.cpp elke klas in zn eigen file omdat ik incomplete class
|
|
|
|
declarations wilt tegengaan, omdat ik ze niet goed begrijp. En header/source
|
|
|
|
split om multiple definition errors tegen te gaan.
|
|
|
|
|
|
|
|
Park_spot representeert een parkeermeter bij elke parkeer spot.
|
|
|
|
Een customer is een customer.
|
|
|
|
Park time is een object die reffereert naar parkspot en customer, basically een
|
|
|
|
record die zegt dat een customer voor x tijd geparkeert heeft bij spot x, enz.
|
|
|
|
|
|
|
|
De client clockt in en uit bij een spot.
|
|
|
|
*/
|
|
|
|
|
2019-06-30 17:49:20 +00:00
|
|
|
void Wait(int sec)
|
2019-06-30 01:30:47 +00:00
|
|
|
/*
|
|
|
|
a wait function where 1 sec represents 1 hour irl.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(seconds{sec});
|
|
|
|
}
|
|
|
|
|
2019-06-30 17:49:20 +00:00
|
|
|
int main() {
|
2019-07-02 00:51:23 +00:00
|
|
|
// Customer sagar = query_customer_with_name("stefan udit")[0];
|
|
|
|
Customer sagar = query_customer_with_id(2);
|
|
|
|
cout << sagar.id << "," << sagar.name << "," << sagar.password;
|
|
|
|
// cout << parking_spots.size();
|
|
|
|
|
|
|
|
// for (auto i : parking_spots){
|
|
|
|
// cout << i.id << "," << i.parked_customer;
|
|
|
|
// }
|
2019-07-02 00:18:52 +00:00
|
|
|
|
2019-07-01 17:23:15 +00:00
|
|
|
}
|