summaryrefslogtreecommitdiff
path: root/ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h')
-rw-r--r--ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h b/ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h
new file mode 100644
index 00000000000..4cc3b4ee8a0
--- /dev/null
+++ b/ACE/TAO/tests/ZIOP/TestCompressor/TestCompressor.h
@@ -0,0 +1,53 @@
+// -*- C++ -*-
+
+// ===================================================================
+/**
+ * @file TestCompressor.h
+ *
+ * $Id$
+ *
+ * See http://www.zlib.net/manual.html for the zlib interface itself
+ *
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ */
+// ===================================================================
+
+#ifndef TAO_TESTCOMPRESSOR_H
+#define TAO_TESTCOMPRESSOR_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/Base_Compressor.h"
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ class TAO_TESTCOMPRESSOR_Export TestCompressor : public BaseCompressor
+ {
+ public:
+ TestCompressor (::Compression::CompressionLevel compression_level,
+ ::Compression::CompressorFactory_ptr compressor_factory);
+
+ virtual void compress (
+ const ::Compression::Buffer &,
+ ::Compression::Buffer &);
+
+ virtual void decompress (
+ const ::Compression::Buffer &,
+ ::Compression::Buffer &);
+ };
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* TAO_TESTCOMPRESSOR_H */