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_ldap_ClassCode_hpp
10 #define anna_ldap_ClassCode_hpp
11 
12 #include <string>
13 
14 namespace anna {
15 
16 namespace ldap {
17 
21 struct ClassCode {
22  enum _v {
24  Bind,
26  Max,
27  Min = 0
28  };
29 
35  static std::string asString(const _v v) ;
36 };
37 
38 }
39 }
40 
41 #endif
42 
_v
Definition: ClassCode.hpp:22
Definition: ClassCode.hpp:21
Definition: ClassCode.hpp:23
Definition: ClassCode.hpp:24
static std::string asString(const _v v)
Definition: ClassCode.hpp:26
Definition: ClassCode.hpp:25
Definition: app.hpp:12
Definition: ClassCode.hpp:27