ANNA Suite  2020b
Multipurpose development suite for Telco applications
Compressor.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_xml_Compressor_hpp
10 #define anna_xml_Compressor_hpp
11 
13 
14 namespace anna {
15 
16 namespace xml {
17 
18 class Document;
19 
28 class Compressor : ZBlock {
29 public:
33  Compressor() {;}
34 
42  const DataBlock& apply(const Document& xmlDoc) noexcept(false);
43 
44 private:
45  Compressor(const Compressor&);
46 };
47 
48 }
49 }
50 
51 #endif
Definition: Document.hpp:49
Definition: ZBlock.hpp:23
const DataBlock & apply(const Document &xmlDoc) noexcept(false)
Definition: app.hpp:12
Definition: DataBlock.hpp:24
Compressor()
Definition: Compressor.hpp:33
Definition: Compressor.hpp:28