home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / CPTUTOR2.ZIP / ANSWERS.ARC / CH07_2A.HPP < prev    next >
Text File  |  1990-07-20  |  373b  |  22 lines

  1.                               // Chapter 7 - Programming exercise 2
  2. #ifndef CARHPP
  3. #define CARHPP
  4.  
  5. #include "vehicle.hpp"
  6.  
  7. class car : public vehicle {
  8.    int passenger_load;
  9. public:
  10.    void initialize(int in_wheels, float in_weight, int people = 4);
  11.    int passengers(void);
  12. };
  13.  
  14. #endif
  15.  
  16.  
  17.  
  18.  
  19. // Result of execution
  20. //
  21. // (this file cannot be executed)
  22.