Merge pull request #2309 from mitza-oci/warnings
[ACE_TAO.git] / TAO / tao / Compression / rle / RLECompressor_Factory.h
blobf9bf39ff0038ce467c99c3f2ec3b8ddbaf713268
1 // -*- C++ -*-
3 // ===================================================================
4 /**
5 * @file RLECompressor_Factory.h
7 * @author Derek Dominish <derek.dominish@dsto.defence.gov.au>
8 */
9 // ===================================================================
11 #ifndef TAO_RLECOMPRESSOR_FACTORY_H
12 #define TAO_RLECOMPRESSOR_FACTORY_H
14 #include /**/ "ace/pre.h"
16 #include "tao/Compression/rle/RLECompressor_export.h"
18 #if !defined (ACE_LACKS_PRAGMA_ONCE)
19 # pragma once
20 #endif /* ACE_LACKS_PRAGMA_ONCE */
22 #include "tao/Compression/Compression.h"
23 #include "tao/Compression/Compressor_Factory.h"
25 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
27 namespace TAO
29 class TAO_RLECOMPRESSOR_Export RLE_CompressorFactory :
30 public ::TAO::CompressorFactory
32 public:
33 RLE_CompressorFactory();
35 virtual ::Compression::Compressor_ptr get_compressor (
36 ::Compression::CompressionLevel = 0);
38 private:
39 ::Compression::Compressor_var compressor_;
43 TAO_END_VERSIONED_NAMESPACE_DECL
45 #include /**/ "ace/post.h"
47 #endif /* TAO_RLECOMPRESSOR_FACTORY_H */