summaryrefslogtreecommitdiff
path: root/include/cppunit/plugin
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/plugin')
-rw-r--r--include/cppunit/plugin/DynamicLibraryManager.h8
-rw-r--r--include/cppunit/plugin/PlugInManager.h2
2 files changed, 5 insertions, 5 deletions
diff --git a/include/cppunit/plugin/DynamicLibraryManager.h b/include/cppunit/plugin/DynamicLibraryManager.h
index d70ccde..4ec9d91 100644
--- a/include/cppunit/plugin/DynamicLibraryManager.h
+++ b/include/cppunit/plugin/DynamicLibraryManager.h
@@ -49,7 +49,7 @@ public:
/*! \brief Returns a pointer on the specified symbol exported by the library.
* \param symbol Name of the symbol exported by the library.
- * \return Pointer on the symbol. Should be casted to the actual type. Never \c NULL.
+ * \return Pointer on the symbol. Should be casted to the actual type. Never \c nullptr.
* \exception DynamicLibraryManagerException if the symbol is not found.
*/
Symbol findSymbol( const std::string &symbol );
@@ -72,14 +72,14 @@ private:
*
* May throw any exceptions (indicates failure).
* \param libraryName Name of the library to load.
- * \return Handle of the loaded library. \c NULL indicates failure.
+ * \return Handle of the loaded library. \c nullptr indicates failure.
*/
LibraryHandle doLoadLibrary( const std::string &libraryName );
/*! Releases the loaded library.
*
* The handle of the library to free is in \c m_libraryHandle. It is never
- * \c NULL.
+ * \c nullptr.
* \warning Must NOT throw any exceptions (called from destructor).
*/
void doReleaseLibrary();
@@ -88,7 +88,7 @@ private:
*
* May throw any exceptions (indicates failure).
* \param symbol Name of the symbol exported by the library.
- * \return Pointer on the symbol. \c NULL indicates failure.
+ * \return Pointer on the symbol. \c nullptr indicates failure.
*/
Symbol doFindSymbol( const std::string &symbol );
diff --git a/include/cppunit/plugin/PlugInManager.h b/include/cppunit/plugin/PlugInManager.h
index c9d72d8..9b73af5 100644
--- a/include/cppunit/plugin/PlugInManager.h
+++ b/include/cppunit/plugin/PlugInManager.h
@@ -40,7 +40,7 @@ public:
* \param libraryFileName Name of the file that contains the TestPlugIn.
* \param parameters List of string passed to the plug-in.
* \return Pointer on the DynamicLibraryManager associated to the library.
- * Valid until the library is unloaded. Never \c NULL.
+ * Valid until the library is unloaded. Never \c nullptr.
* \exception DynamicLibraryManagerException is thrown if an error occurs during loading.
*/
void load( const std::string &libraryFileName,