#ifndef CAR_H #define CAR_H #include class Car{ private: string licence; int moves; public: Car(string l):licence(l),moves(0){} string getLicence(){return licence;} int getMoves(){return moves;} void incMoves(){moves++;} }; #endif