diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 06:36:51 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-08-29 06:36:51 +0000 |
| commit | eb3575761c12af9822403fcf25b6930150fb6890 (patch) | |
| tree | c66e2a7a138e4ee97d020aab43d6372f6bafe194 /include/cppunit/tools | |
| parent | edf9c347bd42b7940d39dd70049fb9895d3a3c5a (diff) | |
| download | cppunit-eb3575761c12af9822403fcf25b6930150fb6890.tar.gz | |
Include/cppunit/Asserter.
include/cppunit/Asserter.h:
* include/cppunit/Message.h:
* include/cppunit/extensions/TestNamer.h:
* include/cppunit/extensions/TestSuiteBuilder.h:
* include/cppunit/tools/XmlDocument.h:
* include/cppunit/tools/XmlElement.h: Fixed a few documentation bug.
Diffstat (limited to 'include/cppunit/tools')
| -rw-r--r-- | include/cppunit/tools/XmlDocument.h | 4 | ||||
| -rw-r--r-- | include/cppunit/tools/XmlElement.h | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/include/cppunit/tools/XmlDocument.h b/include/cppunit/tools/XmlDocument.h index 8eba6d1..8d3f0c7 100644 --- a/include/cppunit/tools/XmlDocument.h +++ b/include/cppunit/tools/XmlDocument.h @@ -25,8 +25,10 @@ class XmlElement; class CPPUNIT_API XmlDocument { public: - /*! Constructs a XmlDocument object. + /*! \brief Constructs a XmlDocument object. * \param encoding Encoding used in the XML file (default is Latin-1, ISO-8859-1 ). + * \param styleSheet Name of the XSL style sheet file used. If empty then no + * style sheet will be specified in the output. */ XmlDocument( const std::string &encoding = "", const std::string &styleSheet = "" ); diff --git a/include/cppunit/tools/XmlElement.h b/include/cppunit/tools/XmlElement.h index 62d9e73..0b36bd2 100644 --- a/include/cppunit/tools/XmlElement.h +++ b/include/cppunit/tools/XmlElement.h @@ -71,7 +71,7 @@ public: */ void setContent( const std::string &content ); - /*! \overload. + /*! \overload void setContent( const std::string &content ) */ void setContent( int numericContent ); @@ -84,7 +84,7 @@ public: /*! \brief Adds an attribute with the specified numeric value. * \param attributeName Name of the attribute. Must not be empty. - * \param value Numeric value of the attribute. + * \param numericValue Numeric value of the attribute. */ void addAttribute( std::string attributeName, int numericValue ); |
