gfactory
TeslaFactory.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
Tesla
:
public
Car
7
{
8
public
:
9
Tesla
();
10
void
go
();
11
float
autopilot
[2][2];
12
};
13
14
extern
"C"
Car
*
CarFactory
(
void
) {
15
return
static_cast<
Car
*
>
(
new
Tesla
);
16
}
17
18
19
#endif
// SECONDFACTORY_H
Car.h
CarFactory
Car * CarFactory(void)
Definition:
TeslaFactory.h:14
Car
Definition:
Car.h:6
Tesla
Definition:
TeslaFactory.h:7
Tesla::autopilot
float autopilot[2][2]
Definition:
TeslaFactory.h:11
Tesla::go
void go()
Definition:
TeslaFactory.cc:6
Tesla::Tesla
Tesla()
Definition:
TeslaFactory.cc:16
examples
TeslaFactory.h
Generated by
1.9.1