ANNA Suite  2020b
Multipurpose development suite for Telco applications
DiameterURI.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_codec_basetypes_DiameterURI_hpp
10 #define anna_diameter_codec_basetypes_DiameterURI_hpp
11 
12 
13 // Local
15 
16 
17 namespace anna {
18 
19 namespace diameter {
20 
21 namespace codec {
22 
23 class Avp;
24 
25 namespace basetypes {
26 
30 class DiameterURI : public OctetString {
31 
32 // De momento no vamos a interpretar/decodificar este tipo de formato, puesto que aún no se ha necesitado a nivel de aplicación
33 
34  // Only for derived diameter type:
35  void updateBasic() noexcept(false); // assertPrintable
36 
37 public:
38 
39  virtual ~DiameterURI() {;}
40 
41  // gets
42 
43  std::string getFormatName() const { return "DiameterURI"; }
44 
45 
46  // helpers
47 
48 
49  // sets
50 
51  void decode(const char* buffer, const int size) noexcept(false);
52 };
53 
54 }
55 }
56 }
57 }
58 
59 #endif
60 
virtual ~DiameterURI()
Definition: DiameterURI.hpp:39
std::string getFormatName() const
Definition: DiameterURI.hpp:43
Definition: OctetString.hpp:30
Definition: DiameterURI.hpp:30
Definition: app.hpp:12
void decode(const char *buffer, const int size) noexcept(false)