source: cpp/gdk/defgenoconv.cpp @ 66

Last change on this file since 66 was 66, checked in by Maciej Komosinski, 13 years ago

set 'eol-style' to 'native'

  • Property svn:eol-style set to native
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
33DefaultGenoConvManager::DefaultGenoConvManager()
34{
35#ifdef USE_GENCONV_F10
36addConverter(new GenoConv_F1());
37#endif
38#ifdef USE_GENCONV_F20
39addConverter(new GenoConv_F20());
40#endif
41#ifdef USE_GENCONV_F32
42addConverter(new GenoConv_F32());
43#endif
44#ifdef USE_GENCONV_F40
45addConverter(new GenoConv_F40());
46#endif
47#ifdef USE_GENCONV_F41_TEST
48addConverter(new GenoConv_F41_TestOnly());
49#endif
50#ifdef USE_GENCONV_F50
51addConverter(new GenoConv_F50);
52#endif
53#ifdef USE_GENCONV_F60
54addConverter(new GenoConv_F60);
55#endif
56#ifdef USE_GENCONV_F70
57addConverter(new GenoConv_F70);
58#endif
59#ifdef USE_GENCONV_F81
60GenoConv_F8ToF1 *gc81=new GenoConv_F8ToF1();
61GenoConv_F8ToF1::staticpar=gc81->par; //a trick so that the simulator can see this param
62addConverter(gc81);
63#endif
64
65param.updatetab();
66}
Note: See TracBrowser for help on using the repository browser.