home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Share Gallery 1
/
share_gal_1.zip
/
share_gal_1
/
ED
/
ED003A.ZIP
/
CAR.HPP
< prev
next >
Wrap
Text File
|
1990-07-20
|
320b
|
17 lines
// Chapter 7 - Program 4
#include "vehicle.hpp"
class car : public vehicle {
int passenger_load;
public:
void initialize(int in_wheels, float in_weight, int people = 4);
int passengers(void);
};
// Result of execution
//
// (this file cannot be executed)