#ifndef VEHICLE_H #define VEHICLE_H #include #include //#include "Truck.h" //#include "Sportscar.h" using namespace std; class Vehicle { private: double weight; //in lbs. int year; string license_plate_no; void honk(); public: Vehicle(); Vehicle(double weight, int year); ~Vehicle(); void set_weight(double the_weight); double get_weight(); void set_year(int the_year); int get_year(); void set_license_no(string the_licence); string get_license_no(); void display(); //displays all the vehicle's info to the screen }; #endif