summaryrefslogtreecommitdiff
path: root/TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h')
-rw-r--r--TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h50
1 files changed, 50 insertions, 0 deletions
diff --git a/TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h b/TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h
new file mode 100644
index 00000000000..3fd02e8d68a
--- /dev/null
+++ b/TAO/tests/ZIOP/TestCompressor/TestCompressor_Factory.h
@@ -0,0 +1,50 @@
+// -*- C++ -*-
+
+// ===================================================================
+/**
+ * @file TestCompressor_Factory.h
+ *
+ * $Id$
+ *
+ * @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 10
+
+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 */