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.h
CarFactory
Car * CarFactory(void)
Definition:
FordFactory.h:14
Car
Definition:
Car.h:6
Ford
Definition:
FordFactory.h:7
Ford::go
void go()
Definition:
FordFactory.cc:6
Ford::Ford
Ford()
Definition:
FordFactory.cc:10
Ford::fordVar
float fordVar[2]
Definition:
FordFactory.h:11
examples
FordFactory.h
Generated by
1.9.1