diff options
Diffstat (limited to 'include/cppunit/plugin/PlugInManager.h')
| -rw-r--r-- | include/cppunit/plugin/PlugInManager.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/cppunit/plugin/PlugInManager.h b/include/cppunit/plugin/PlugInManager.h index 6baaa2b..a2b8e15 100644 --- a/include/cppunit/plugin/PlugInManager.h +++ b/include/cppunit/plugin/PlugInManager.h @@ -33,7 +33,7 @@ public: /// Destructor. virtual ~PlugInManager(); - /*! Loads the specified plug-in. + /*! \brief Loads the specified plug-in. * * After being loaded, the CppUnitTestPlugIn::initialize() is called. * @@ -46,28 +46,28 @@ public: void load( const std::string &libraryFileName, const PlugInParameters ¶meters = PlugInParameters() ); - /*! Unloads the specified plug-in. + /*! \brief Unloads the specified plug-in. * \param libraryFileName Name of the file that contains the TestPlugIn passed * to a previous call to load(). */ void unload( const std::string &libraryFileName ); - /*! Gives a chance to each loaded plug-in to register TestListener. + /*! \brief Gives a chance to each loaded plug-in to register TestListener. * * For each plug-in, call CppUnitTestPlugIn::addListener(). */ void addListener( TestResult *eventManager ); - /*! Gives a chance to each loaded plug-in to unregister TestListener. + /*! \brief Gives a chance to each loaded plug-in to unregister TestListener. * For each plug-in, call CppUnitTestPlugIn::removeListener(). */ void removeListener( TestResult *eventManager ); - /*! Provides a way for the plug-in to register some XmlOutputterHook. + /*! \brief Provides a way for the plug-in to register some XmlOutputterHook. */ void addXmlOutputterHooks( XmlOutputter *outputter ); - /*! Called when the XmlOutputter is destroyed. + /*! \brief Called when the XmlOutputter is destroyed. * * Can be used to free some resources allocated by addXmlOutputterHooks(). */ |
