OpenTREP Logo  0.6.0
C++ Open Travel Request Parsing Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
BomType.hpp
Go to the documentation of this file.
1 #ifndef __OPENTREP_BOM_BOMTYPE_HPP
2 #define __OPENTREP_BOM_BOMTYPE_HPP
3 
4 // //////////////////////////////////////////////////////////////////////
5 // Import section
6 // //////////////////////////////////////////////////////////////////////
7 // STL
8 #include <string>
9 
10 namespace OPENTREP {
11 
13  struct BomType {
14  public:
15  typedef enum {
16  WORLD = 0,
20  DAY,
24  } EN_BomType;
25 
27  static const std::string& getLabel (const EN_BomType&);
28 
29  private:
31  static const std::string _labels[LAST_VALUE];
32  };
33 
34 }
35 #endif // __OPENTREP_BOM_BOMTYPE_HPP
static const std::string & getLabel(const EN_BomType &)
Definition: BomType.cpp:16