home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / c_plus_tut / hpp / car < prev    next >
Encoding:
Text File  |  1994-04-05  |  303 b   |  17 lines

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