summaryrefslogtreecommitdiff
path: root/TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h
blob: 61445b5e13af0eb3a673fb23cfaf74b2c5a29db1 (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
48
// -*- C++ -*-

// ===================================================================
/**
 *  @file   TestCompressor_Factory.h
 *
 *  @author Johnny Willemsen  <jwillemsen@remedy.nl>
 */
// ===================================================================

#ifndef TAO_TESTCOMPRESSOR_FACTORY_H
#define TAO_TESTCOMPRESSOR_FACTORY_H

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

#include "TestCompressor_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"

#define COMPRESSORID_FOR_TESTING 100

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
    class TAO_TESTCOMPRESSOR_Export Test_CompressorFactory :
      public ::TAO::CompressorFactory
    {
      public:
        Test_CompressorFactory (void);

        virtual ::Compression::Compressor_ptr get_compressor (
            ::Compression::CompressionLevel compression_level);
       private:
         ::Compression::Compressor_var compressor_;
    };
}

TAO_END_VERSIONED_NAMESPACE_DECL

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

#endif /* TAO_TESTCOMPRESSOR_FACTORY_H */