Update of /cvsroot/pclasses/pclasses2/include/pclasses/System
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4440/include/pclasses/System
Modified Files:
SharedLib.h
Log Message:
- Removed SharedLib::SharedLib(const std::string&,...)
- Added some trace messages
Index: SharedLib.h
===================================================================
RCS file: /cvsroot/pclasses/pclasses2/include/pclasses/System/SharedLib.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- SharedLib.h 24 Jan 2005 01:19:25 -0000 1.9
+++ SharedLib.h 28 Apr 2005 10:37:50 -0000 1.10
@@ -69,9 +69,6 @@
SharedLib(const Unicode::String& name, BindMode mode = BindLazy)
throw(SystemError);
- SharedLib(const std::string& name, BindMode mode = BindLazy)
- throw(SystemError);
-
//! Destructor
/*!
The destructor unloads the shared library from memory.
@@ -110,7 +107,8 @@
by this function and will be cleaned up during application
shut-down (post-main()).
*/
-PSYSTEM_EXPORT SharedLib *openSharedLib( const std::string & path ) throw(RuntimeError);
+PSYSTEM_EXPORT SharedLib *openSharedLib(const Unicode::String& path)
+ throw(SystemError);
} // !namespace System
|