Remove warnings
[anna.git] / include / anna / diameter / codec / basetypes / Unknown.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_Unknown_hpp
10 #define anna_diameter_codec_basetypes_Unknown_hpp
11
12
13 // Local
14 #include <anna/diameter/codec/basetypes/OctetString.hpp>
15
16
17 namespace anna {
18
19 namespace diameter {
20
21 namespace codec {
22
23 class Avp;
24
25 namespace basetypes {
26
27 /**
28 * Diameter Unknown container
29 */
30 class Unknown : public OctetString {
31
32 public:
33
34   virtual ~Unknown() {;}
35
36   std::string getFormatName() const throw() { return "Unknown"; }
37 };
38
39 }
40 }
41 }
42 }
43
44 #endif