Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #if !defined(_POINTINGMETHOD_H)
00016
00017 #include <CPointingMethod.h>
00018 #define _POINTINGMETHOD_H
00019 #endif
00020
00021 #if !defined(_POINTINGMETHOD_HH)
00022
00023 #include "Enum.hpp"
00024
00025 using namespace PointingMethodMod;
00026
00027 template<>
00028 struct enum_set_traits<PointingMethod> : public enum_set_traiter<PointingMethod,5,PointingMethodMod::CIRCLE> {};
00029
00030 template<>
00031 class enum_map_traits<PointingMethod,void> : public enum_map_traiter<PointingMethod,void> {
00032 public:
00033 static bool init_;
00034 static string typeName_;
00035 static string enumerationDesc_;
00036 static string order_;
00037 static string xsdBaseType_;
00038 static bool init(){
00039 EnumPar<void> ep;
00040 m_.insert(pair<PointingMethod,EnumPar<void> >
00041 (PointingMethodMod::THREE_POINT,ep((int)PointingMethodMod::THREE_POINT,"THREE_POINT","un-documented")));
00042 m_.insert(pair<PointingMethod,EnumPar<void> >
00043 (PointingMethodMod::FOUR_POINT,ep((int)PointingMethodMod::FOUR_POINT,"FOUR_POINT","un-documented")));
00044 m_.insert(pair<PointingMethod,EnumPar<void> >
00045 (PointingMethodMod::FIVE_POINT,ep((int)PointingMethodMod::FIVE_POINT,"FIVE_POINT","un-documented")));
00046 m_.insert(pair<PointingMethod,EnumPar<void> >
00047 (PointingMethodMod::CROSS,ep((int)PointingMethodMod::CROSS,"CROSS","un-documented")));
00048 m_.insert(pair<PointingMethod,EnumPar<void> >
00049 (PointingMethodMod::CIRCLE,ep((int)PointingMethodMod::CIRCLE,"CIRCLE","un-documented")));
00050 return true;
00051 }
00052 static map<PointingMethod,EnumPar<void> > m_;
00053 };
00054 #define _POINTINGMETHOD_HH
00055 #endif