diff options
Diffstat (limited to 'include/cppunit/plugin/DynamicLibraryManager.h')
-rw-r--r-- | include/cppunit/plugin/DynamicLibraryManager.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/cppunit/plugin/DynamicLibraryManager.h b/include/cppunit/plugin/DynamicLibraryManager.h index 2a95f30..3b4f30b 100644 --- a/include/cppunit/plugin/DynamicLibraryManager.h +++ b/include/cppunit/plugin/DynamicLibraryManager.h @@ -92,6 +92,16 @@ private: */ Symbol doFindSymbol( const std::string &symbol ); + /*! Returns detailed information about doLoadLibrary() failure. + * + * Called just after a failed call to doLoadLibrary() to get extra + * error information. + * + * \return Detailed information about the failure of the call to + * doLoadLibrary() that just failed. + */ + std::string getLastErrorDetail() const; + /// Prevents the use of the copy constructor. DynamicLibraryManager( const DynamicLibraryManager © ); |