43 lines
1.4 KiB
C++
43 lines
1.4 KiB
C++
#include "headers/Park_spot.h"
|
|
#include <iostream>
|
|
#include <thread> // to make pausing work, not sure if i need chrono, or this, or both
|
|
#include <vector>
|
|
#include "thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
|
|
|
|
|
|
/*
|
|
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.
|
|
*/
|
|
|
|
void Wait(int sec)
|
|
/*
|
|
a wait function where 1 sec represents 1 hour irl.
|
|
*/
|
|
{
|
|
std::this_thread::sleep_for(seconds { sec });
|
|
}
|
|
|
|
using std::cout;
|
|
|
|
|
|
int main()
|
|
{
|
|
SQLite::Database db("test.db3", SQLite::OPEN_READWRITE|SQLite::OPEN_CREATE);
|
|
|
|
db.exec("create table Customer (id int primary key, name text, card_code varchar(20), verhicle int)");
|
|
db.exec("create table Park_spot (id int primary key, taken boolean, customer_id int)");
|
|
db.exec("create table Park_time (id int primary key, customer_id int, spot_id int, start real, end real, duration real)");
|
|
|
|
|
|
|
|
} |