1 2 3 4 5 6 7 8 9
#ifndef VEHICLE_HPP #define VEHICLE_HPP class Vehicle { public: virtual void getName() = 0; }; #endif // VEHICLE_HPP