123456789101112131415
class ParkingLot { public: ParkingLot() { ... } void ParkVehicle(Vehicle _v, ParkingSpace& _ps, std::string ps) { .... } ... };
1234567891011
ParkingLot::ParkingLot() { ... } void ParkingLot::ParkVehicle(Vehicle _v, ParkingSpace& _ps, std::string ps) { .... } ...