ammend parkspot to include vehicletype

This commit is contained in:
MassiveAtoms
2019-07-06 12:14:18 -03:00
parent 70fcbc274b
commit d3ac836657
5 changed files with 14 additions and 14 deletions

View File

@@ -18,9 +18,10 @@ class Park_spot {
int id;
bool taken;
int parked_customer;
Vehicle_type v_type;
Park_spot();
Park_spot(int id_, bool taken_, int parked);
Park_spot(Vehicle_type v_type_);
Park_spot(int id_, bool taken_, int parked, Vehicle_type v_type_);
void clock(Customer& c_customer);
private: