ANNA Suite  2020b
Multipurpose development suite for Telco applications
Decompressor.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_Decompressor_hpp
10 #define anna_xml_Decompressor_hpp
11 
13 
14 namespace anna {
15 
16 class DataBlock;
17 
18 namespace xml {
19 
20 class Document;
21 
31 public:
35  Decompressor();
36 
40  virtual ~Decompressor();
41 
47  const Document& apply(const DataBlock& dataBlock) noexcept(false);
48 
49 private:
50  Document* a_document;
51 
52  Decompressor(const Decompressor&);
53 };
54 
55 }
56 }
57 
58 #endif
59 
Definition: Document.hpp:49
Definition: Decompressor.hpp:30
Definition: ZBlock.hpp:23
const Document & apply(const DataBlock &dataBlock) noexcept(false)
Definition: app.hpp:12
Definition: DataBlock.hpp:24