FooBar
car.h
Go to the documentation of this file.
1 #ifndef _car_h_
2 #define _car_h_
3 
4 #include "engine.h"
5 #include "mech.h"
6 #include "wheel.h"
7 
8 class Mech;
9 
10 class Car
11 {
12  friend class Typemaps;
13  friend class Serialization;
14 
15  static const unsigned NumWheels = 4;
18 
19 public:
21 };
22 
23 #endif