summaryrefslogtreecommitdiff
path: root/TAO/tao/Compression/rle/RLECompressor_Factory.h
blob: e4b144388f7568b25ccbaa4a5e3c58ca513b184e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// -*- C++ -*-

// ===================================================================
/**
 *  @file   RLECompressor_Factory.h
 *
 *  @author Derek Dominish  <derek.dominish@dsto.defence.gov.au>
 */
// ===================================================================

#ifndef TAO_RLECOMPRESSOR_FACTORY_H
#define TAO_RLECOMPRESSOR_FACTORY_H

#include /**/ "ace/pre.h"

#include "tao/Compression/rle/RLECompressor_export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "tao/Compression/Compression.h"
#include "tao/Compression/Compressor_Factory.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
    class TAO_RLECOMPRESSOR_Export RLE_CompressorFactory :
        public ::TAO::CompressorFactory
    {
    public:
        RLE_CompressorFactory(void);

        virtual ::Compression::Compressor_ptr get_compressor (
            ::Compression::CompressionLevel = 0);

    private:
        ::Compression::Compressor_var compressor_;
    };
}

TAO_END_VERSIONED_NAMESPACE_DECL

#include /**/ "ace/post.h"

#endif /* TAO_RLECOMPRESSOR_FACTORY_H */