diff --git a/code/CarSpotController.cpp b/code/CarSpotController.cpp index 8a31e19..85e919d 100644 --- a/code/CarSpotController.cpp +++ b/code/CarSpotController.cpp @@ -29,6 +29,14 @@ class CarSpotController { this->occupied_spots++; } + void increment_total_spots () { + this->total_spots++; + } + + void decrement_total_spots () { + this->total_spots--; + } + void decrement_occupied_spots () { this->occupied_spots--; }