2019-06-29 22:59:48 +00:00
|
|
|
#include "thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
|
2019-06-27 03:55:27 +00:00
|
|
|
#include "headers/data.h"
|
2019-06-30 00:50:36 +00:00
|
|
|
#include "headers/Park_spot.h"
|
2019-06-27 03:55:27 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
2019-06-29 22:59:48 +00:00
|
|
|
#include <string>
|
2019-06-27 03:55:27 +00:00
|
|
|
|
2019-06-30 01:30:47 +00:00
|
|
|
#include <thread>
|
|
|
|
|
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 01:30:47 +00:00
|
|
|
void Wait(int sec)
|
|
|
|
/*
|
|
|
|
a wait function where 1 sec represents 1 hour irl.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
std::this_thread::sleep_for(seconds{sec});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-06-27 03:55:27 +00:00
|
|
|
|
|
|
|
using std::cout;
|
|
|
|
|
|
|
|
int main() {
|
2019-06-30 01:48:49 +00:00
|
|
|
class Customer sagar{"Sagar Ramsaransing", Verhicle_type::bike};
|
2019-06-30 00:50:36 +00:00
|
|
|
sagar.update_db();
|
2019-06-30 01:30:47 +00:00
|
|
|
Park_spot p1;
|
2019-06-30 00:50:36 +00:00
|
|
|
p1.clock(&sagar);
|
2019-06-30 01:30:47 +00:00
|
|
|
Wait(2);
|
2019-06-30 00:50:36 +00:00
|
|
|
p1.clock(&sagar);
|
2019-06-30 01:30:47 +00:00
|
|
|
|
2019-06-27 03:55:27 +00:00
|
|
|
|
|
|
|
}
|