gfactory
FordFactory.h
Go to the documentation of this file.
1 #ifndef SECONDFACTORY_H
2 #define SECONDFACTORY_H 1
3 
4 #include "Car.h"
5 
6 class Ford : public Car
7 {
8 public:
9  Ford();
10  void go();
11  float fordVar[2];
12 };
13 
14 extern "C" Car* CarFactory(void) {
15  return static_cast<Car*>(new Ford);
16 }
17 
18 
19 #endif // SECONDFACTORY_H
Car * CarFactory(void)
Definition: FordFactory.h:14
Definition: Car.h:6
void go()
Definition: FordFactory.cc:6
Ford()
Definition: FordFactory.cc:10
float fordVar[2]
Definition: FordFactory.h:11