CAssociatedCalNature.h
Go to the documentation of this file.00001
00002 #ifndef CAssociatedCalNature_H
00003 #define CAssociatedCalNature_H
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039 #ifndef __cplusplus
00040 #error This is a C++ include file and cannot be used from plain C
00041 #endif
00042
00043 #include <iostream>
00044 #include <string>
00045 #include <vector>
00049 #ifndef WITHOUT_ACS
00050 #include <almaEnumerations_IFC.h>
00051 #else
00052
00053
00054 namespace AssociatedCalNatureMod
00055 {
00058
00059 const char *const revision = "-1";
00060 const int version = 1;
00061
00062 enum AssociatedCalNature
00063 {
00064 ASSOCIATED_EXECBLOCK
00066 };
00067 typedef AssociatedCalNature &AssociatedCalNature_out;
00068 }
00069 #endif
00070
00071 namespace AssociatedCalNatureMod {
00072 std::ostream & operator << ( std::ostream & out, const AssociatedCalNature& value);
00073 std::istream & operator >> ( std::istream & in , AssociatedCalNature& value );
00074 }
00075
00080 class CAssociatedCalNature {
00081 public:
00082
00087 static const std::string& sASSOCIATED_EXECBLOCK;
00094 static int version() ;
00095
00096
00102 static std::string revision() ;
00103
00104
00109 static unsigned int size() ;
00110
00111
00117 static std::string name(const AssociatedCalNatureMod::AssociatedCalNature& e);
00118
00122 static std::string toString(const AssociatedCalNatureMod::AssociatedCalNature& f) { return name(f); }
00123
00129 static const std::vector<std::string> names();
00130
00131
00132
00133 static AssociatedCalNatureMod::AssociatedCalNature newAssociatedCalNature(const std::string& name);
00134
00140 static AssociatedCalNatureMod::AssociatedCalNature literal(const std::string& name);
00141
00147 static AssociatedCalNatureMod::AssociatedCalNature from_int(unsigned int i);
00148
00149
00150 private:
00151
00152 CAssociatedCalNature();
00153 CAssociatedCalNature(const CAssociatedCalNature&);
00154 CAssociatedCalNature& operator=(const CAssociatedCalNature&);
00155
00156 static std::string badString(const std::string& name) ;
00157 static std::string badInt(unsigned int i) ;
00158
00159 };
00160
00161 #endif