still no clue

This commit is contained in:
MassiveAtoms
2019-07-01 15:12:15 -03:00
parent 5fa84e866f
commit c6ce3c821f
6 changed files with 67 additions and 43 deletions

View File

@ -7,8 +7,8 @@ Park_spot::Park_spot()
save_db();
}
Park_spot::Park_spot(Customer* parked_, int id_, bool taken_)
: parked{nullptr},
Park_spot::Park_spot(int id_, bool taken_, Customer* parked_)
: parked{parked_},
id{id_},
taken{taken_} // TODO: think about how init parked?
{}