TDT4102-Ovinger/Oving8/Oving 8/Car.h

14 lines
167 B
C
Raw Normal View History

2019-03-03 21:46:58 +01:00
#pragma once
class Car
{
unsigned int freeSeats;
public:
Car(unsigned int freeSeats);
bool hasFreeSeats() const;
void reserveFreeSeat();
virtual ~Car() {};
};