39 void brake(
double speed);
42 void turn(
double degrees);
A really simple class for Wheel.
void accelerate(double speed)
Accelerate up to given speed.
Unicycle & operator=(const Unicycle &rhs)
Copy assignment.
void brake(double speed)
Brake until given speed.
void turn(double degrees)
Unicycle()
Default constructor does not initialize association with engine and owner.
Header for the Wheel class used to demo object aggregation features.