diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 18:27:07 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 18:27:07 +0000 |
| commit | 40669673029364275f58207549f91b8390215ec7 (patch) | |
| tree | 64f006dc0eb826c11c5b85bc24d963b1811ba245 /include/cppunit/plugin/PlugInManager.h | |
| parent | eb3575761c12af9822403fcf25b6930150fb6890 (diff) | |
| download | cppunit-40669673029364275f58207549f91b8390215ec7.tar.gz | |
Include/cppunit/CompilerOutputter.
include/cppunit/CompilerOutputter.h:
* include/cppunit/Exception.h:
* include/cppunit/Protector.h:
* include/cppunit/TestListener.h:
* include/cppunit/TestPath.h:
* include/cppunit/TestResult.h:
* include/cppunit/TestRunner.h:
* include/cppunit/XmlOutputter.h:
* include/cppunit/plugin/DynamicLibraryManager.h:
* include/cppunit/plugin/PlugInManager.h:
* include/cppunit/plugin/PlugInParameters.h:
* include/cppunit/TestPlugIn.h:
* src/cppunit/DefaultProtector.h:
* src/cppunit/ProtectorChain.h:
* src/cppunit/ProtectorContext.h:
* src/cppunit/TestCase.cpp:
* src/cppunit/TestResult.cpp: fixed a dew documentation bugs.
* include/cppunit/TestResult.h:
* src/cppunit/TestResult.cpp: moved documentation to header.
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(). */ |
