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

@ -14,8 +14,9 @@ class Park_spot {
public:
int id;
bool taken;
Customer* parked; //TODO: think about memory management
Customer* parked;
Park_spot();
~Park_spot();
void clock(Customer* c_customer);
private:
void save_db();