summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/IceSSL/OpenSSLPluginIF.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/OpenSSLPluginIF.h b/cpp/src/IceSSL/OpenSSLPluginIF.h
new file mode 100644
index 00000000000..d5de125affb
--- /dev/null
+++ b/cpp/src/IceSSL/OpenSSLPluginIF.h
@@ -0,0 +1,32 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// Mutable Realms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_SSL_OPENSSL_PLUGIN_I_F_H
+#define ICE_SSL_OPENSSL_PLUGIN_I_F_H
+
+#include <Ice/Handle.h>
+
+namespace IceSSL
+{
+
+class OpenSSLPluginI;
+typedef IceInternal::Handle<OpenSSLPluginI> OpenSSLPluginIPtr;
+
+}
+
+namespace IceInternal
+{
+
+void incRef(IceSSL::OpenSSLPluginI*);
+void decRef(IceSSL::OpenSSLPluginI*);
+
+}
+
+#endif