summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/DynamicLibraryF.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2002-04-01 20:42:16 +0000
committerMark Spruiell <mes@zeroc.com>2002-04-01 20:42:16 +0000
commitf8c70c81e385fd549756b4f660b4b6860a3e913c (patch)
treefe040c2fb9621655f7389ff0ddf6c55c66ce536a /cpp/include/Ice/DynamicLibraryF.h
parentinitial check-in (diff)
downloadice-f8c70c81e385fd549756b4f660b4b6860a3e913c.tar.bz2
ice-f8c70c81e385fd549756b4f660b4b6860a3e913c.tar.xz
ice-f8c70c81e385fd549756b4f660b4b6860a3e913c.zip
adding DynamicLibrary
Diffstat (limited to 'cpp/include/Ice/DynamicLibraryF.h')
-rw-r--r--cpp/include/Ice/DynamicLibraryF.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/cpp/include/Ice/DynamicLibraryF.h b/cpp/include/Ice/DynamicLibraryF.h
new file mode 100644
index 00000000000..56c8e503d95
--- /dev/null
+++ b/cpp/include/Ice/DynamicLibraryF.h
@@ -0,0 +1,26 @@
+// **********************************************************************
+//
+// Copyright (c) 2001
+// MutableRealms, Inc.
+// Huntsville, AL, USA
+//
+// All Rights Reserved
+//
+// **********************************************************************
+
+#ifndef ICE_DYNAMIC_LIBRARY_F_H
+#define ICE_DYNAMIC_LIBRARY_F_H
+
+#include <Ice/Handle.h>
+
+namespace IceInternal
+{
+
+class DynamicLibrary;
+ICE_API void incRef(DynamicLibrary*);
+ICE_API void decRef(DynamicLibrary*);
+typedef Handle<DynamicLibrary> DynamicLibraryPtr;
+
+}
+
+#endif