ANNA Suite  2020b
Multipurpose development suite for Telco applications
ClassCode.hpp
Go to the documentation of this file.
1 // ANNA - Anna is Not Nothingness Anymore //
2 // //
3 // (c) Copyright 2005-2015 Eduardo Ramos Testillano & Francisco Ruiz Rayo //
4 // //
5 // See project site at http://redmine.teslayout.com/projects/anna-suite //
6 // See accompanying file LICENSE or copy at http://www.teslayout.com/projects/public/anna.LICENSE //
7 
8 
9 #ifndef anna_diameter_comm_ClassCode_hpp
10 #define anna_diameter_comm_ClassCode_hpp
11 
12 
13 // STL
14 #include <string>
15 
16 
17 namespace anna {
18 
19 namespace diameter {
20 
21 namespace comm {
22 
27 struct ClassCode {
28  enum _v {
29  Undefined, // valdra 0, igual que Min
30  Bind,
32  Max,
33  Min = 0
34  };
35 
36 
42  //static std::string asString(const _v v) ;
43 
49  static std::string asText(const _v v) ;
50 };
51 
52 }
53 }
54 }
55 
56 #endif
57 
Definition: ClassCode.hpp:33
Definition: ClassCode.hpp:32
_v
Definition: ClassCode.hpp:28
Definition: ClassCode.hpp:27
Definition: ClassCode.hpp:30
Definition: app.hpp:12
static std::string asText(const _v v)
Definition: ClassCode.hpp:29