heavily simplified imports and using directives

This commit is contained in:
TinyAtoms
2019-06-29 23:22:58 -03:00
parent 97ed3150ec
commit 085cd5af08
8 changed files with 44 additions and 43 deletions

View File

@ -1,9 +1,4 @@
#include "thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
#include "headers/data.h"
#include "headers/Park_spot.h"
#include <iostream>
#include <vector>
#include <string>
#include <thread>
@ -31,16 +26,13 @@ a wait function where 1 sec represents 1 hour irl.
}
using std::cout;
int main() {
class Customer sagar{"Sagar Ramsaransing", Verhicle_type::bike};
sagar.update_db();
Park_spot p1;
p1.clock(&sagar);
Wait(2);
p1.clock(&sagar);
// p1.clock(&sagar);
}