Remove warnings
[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   virtual ~Enumerated() {;}
37
38   // gets
39
40   std::string getFormatName() const throw() { return "Enumerated"; }
41
42
43   // helpers
44
45
46   // sets
47 };
48
49 }
50 }
51 }
52 }
53
54 #endif
55