3 // ===================================================================
5 * @file RLECompressor_Factory.h
7 * @author Derek Dominish <derek.dominish@dsto.defence.gov.au>
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)
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
29 class TAO_RLECOMPRESSOR_Export RLE_CompressorFactory
:
30 public ::TAO::CompressorFactory
33 RLE_CompressorFactory();
35 virtual ::Compression::Compressor_ptr
get_compressor (
36 ::Compression::CompressionLevel
= 0);
39 ::Compression::Compressor_var compressor_
;
43 TAO_END_VERSIONED_NAMESPACE_DECL
45 #include /**/ "ace/post.h"
47 #endif /* TAO_RLECOMPRESSOR_FACTORY_H */