#ifndef CAR_H #define CAR_H #include #include "vehicle.h" using namespace std; class car: public vehicle { public: car(): vehicle {"car", "beep beep"} {} void funFact() const override { cout << "Fun fact: The world's first speeding ticket was issued in 1902!\n"; } }; #endif