summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/DynamicLibrary.h
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2003-02-06 18:01:52 +0000
committerMark Spruiell <mes@zeroc.com>2003-02-06 18:01:52 +0000
commitedf693cab7be62486c5412fe10fc2669224eba80 (patch)
tree8585d08a19c00f1115e22c81f3d84d2c34e51a39 /cpp/include/Ice/DynamicLibrary.h
parentfix (diff)
downloadice-edf693cab7be62486c5412fe10fc2669224eba80.tar.bz2
ice-edf693cab7be62486c5412fe10fc2669224eba80.tar.xz
ice-edf693cab7be62486c5412fe10fc2669224eba80.zip
make use of Ice version optional in shared library name
Diffstat (limited to 'cpp/include/Ice/DynamicLibrary.h')
-rw-r--r--cpp/include/Ice/DynamicLibrary.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/cpp/include/Ice/DynamicLibrary.h b/cpp/include/Ice/DynamicLibrary.h
index 077fc9238c5..6cd575a49c7 100644
--- a/cpp/include/Ice/DynamicLibrary.h
+++ b/cpp/include/Ice/DynamicLibrary.h
@@ -44,8 +44,10 @@ public:
// name[,version]:function
//
// The name of the library is constructed from the given
- // information. If no version is supplied, the Ice version is
- // used. For example, consider the following entry point:
+ // information. If no version is supplied and the boolean
+ // argument is true, the Ice version is used instead.
+ //
+ // For example, consider the following entry point:
//
// foo:create
//
@@ -64,7 +66,7 @@ public:
//
// Returns 0 if a failure occurred.
//
- symbol_type loadEntryPoint(const std::string&);
+ symbol_type loadEntryPoint(const std::string&, bool = true);
//
// Open a library with the given path.