#ifndef CAR_H #define CAR_H #include #include using namespace std; class Car { private: //kilometers per liter achieved by the car double kpl; public: Car(double newkpl) { kpl = newkpl; } double getKPL() { return kpl; } }; #endif