#ifndef MOTORCYCLE_H #define MOTORCYCLE_H #include #include "vehicle.h" using namespace std; class motorcycle: public vehicle { public: motorcycle(): vehicle {"motorcycle", "vroom vroom"} {} void funFact() const override { cout << "Fun fact: The first motorcycle was invented in 1885!\n"; } }; #endif