Last change
on this file since 64 was
64,
checked in by Maciej Komosinski, 14 years ago
|
a lot of minor fixes
|
File size:
1.3 KB
|
Line | |
---|
1 | #include "defgenoconv.h"
|
---|
2 |
|
---|
3 | #include "gen-config.h"
|
---|
4 |
|
---|
5 | #ifdef USE_GENCONV_F10
|
---|
6 | #include "conv_f1.h"
|
---|
7 | #endif
|
---|
8 | #ifdef USE_GENCONV_F20
|
---|
9 | #include "conv_f2.h"
|
---|
10 | #endif
|
---|
11 | #ifdef USE_GENCONV_F32
|
---|
12 | #include "conv_f3.h"
|
---|
13 | #endif
|
---|
14 | #ifdef USE_GENCONV_F40
|
---|
15 | #include "conv_f4.h"
|
---|
16 | #endif
|
---|
17 | #ifdef USE_GENCONV_F41_TEST
|
---|
18 | #include "conv_f4.h"
|
---|
19 | #endif
|
---|
20 | #ifdef USE_GENCONV_F50
|
---|
21 | #include "conv_f5.h"
|
---|
22 | #endif
|
---|
23 | #ifdef USE_GENCONV_F60
|
---|
24 | #include "geno_f6.h"
|
---|
25 | #endif
|
---|
26 | #ifdef USE_GENCONV_F70
|
---|
27 | #include "conv_f7.h"
|
---|
28 | #endif
|
---|
29 | #ifdef USE_GENCONV_F81
|
---|
30 | #include "conv_f8tof1.h"
|
---|
31 | #endif
|
---|
32 |
|
---|
33 | DefaultGenoConvManager::DefaultGenoConvManager()
|
---|
34 | {
|
---|
35 | #ifdef USE_GENCONV_F10
|
---|
36 | addConverter(new GenoConv_F1());
|
---|
37 | #endif
|
---|
38 | #ifdef USE_GENCONV_F20
|
---|
39 | addConverter(new GenoConv_F20());
|
---|
40 | #endif
|
---|
41 | #ifdef USE_GENCONV_F32
|
---|
42 | addConverter(new GenoConv_F32());
|
---|
43 | #endif
|
---|
44 | #ifdef USE_GENCONV_F40
|
---|
45 | addConverter(new GenoConv_F40());
|
---|
46 | #endif
|
---|
47 | #ifdef USE_GENCONV_F41_TEST
|
---|
48 | addConverter(new GenoConv_F41_TestOnly());
|
---|
49 | #endif
|
---|
50 | #ifdef USE_GENCONV_F50
|
---|
51 | addConverter(new GenoConv_F50);
|
---|
52 | #endif
|
---|
53 | #ifdef USE_GENCONV_F60
|
---|
54 | addConverter(new GenoConv_F60);
|
---|
55 | #endif
|
---|
56 | #ifdef USE_GENCONV_F70
|
---|
57 | addConverter(new GenoConv_F70);
|
---|
58 | #endif
|
---|
59 | #ifdef USE_GENCONV_F81
|
---|
60 | GenoConv_F8ToF1 *gc81=new GenoConv_F8ToF1();
|
---|
61 | GenoConv_F8ToF1::staticpar=gc81->par; //a trick so that the simulator can see this parama
|
---|
62 | addConverter(gc81);
|
---|
63 | #endif
|
---|
64 |
|
---|
65 | param.updatetab();
|
---|
66 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.