                                  // Chapter 7 - Program 1
// vehicle header file

#ifndef VEHICLEHPP
#define VEHICLEHPP

class vehicle {
   int wheels;
   float weight;
public:
   void initialize(int in_wheels, float in_weight);
   int get_wheels(void);
   float get_weight(void);
   float wheel_loading(void);
};

#endif
