00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef ACDCGenConfig_H
00010 #define ACDCGenConfig_H
00011
00024 #ifndef ACDC_ALT_CONFIG
00025
00026 #include <vector>
00027 #include <map>
00028 #include <limits>
00029
00031 namespace ACDCGenerator {
00032
00033
00034 using std::vector;
00035 using std::multimap;
00036 using std::numeric_limits;
00037 using std::map;
00038 using std::max;
00039 using std::min;
00040 using std::swap;
00041 using std::make_pair;
00042
00045 typedef short DimType;
00046
00047 }
00048
00049 #else
00050
00051 #include ACDC_ALT_CONFIG
00052
00053 #endif
00054
00055 namespace ACDCGenerator {
00056
00058 typedef vector<double> DVector;
00059
00060 }
00061
00062 #endif