FooBar
bmw.h
Go to the documentation of this file.
1 #ifndef _BMW_h_
2 #define _BMW_h_
3 
4 #include "car.h"
5 #include "luxury.h"
6 
7 class BMW : public Car, private Luxury
8 {
9  friend class Typemaps;
10 public:
11  float price;
12 private:
13  int serial;
14 };
15 
16 #endif