4a53d0f50b6abc74fa4e73d455428b51c9a1bad6
[anna.git] / include / anna / diameter / codec / basetypes / Enumerated.hpp
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_codec_basetypes_Enumerated_hpp
10 #define anna_diameter_codec_basetypes_Enumerated_hpp
11
12
13 // Local
14 #include <anna/diameter/codec/basetypes/Integer32.hpp>
15
16 #include <anna/config/defines.hpp>
17
18
19 namespace anna {
20
21 namespace diameter {
22
23 namespace codec {
24
25 class Avp;
26
27 namespace basetypes {
28
29 /**
30 * Diameter Enumerated container
31 */
32 class Enumerated : public Integer32 {
33
34 public:
35
36   // gets
37
38   std::string getFormatName() const throw() { return "Enumerated"; }
39
40
41   // helpers
42
43
44   // sets
45 };
46
47 }
48 }
49 }
50 }
51
52 #endif
53