[Cppunit-devel] [patch] Escape < and > in apidox
Brought to you by:
blep
From: Brad H. <br...@fr...> - 2005-06-13 11:40:29
|
<foo> needs to be escaped (as \<foo\>), because < and > are=20 significant to Doxygen. diff -u -4 -p -r1.4 XmlOutputterHook.h =2D-- XmlOutputterHook.h 3 Aug 2002 16:00:46 -0000 1.4 +++ XmlOutputterHook.h 13 Jun 2005 11:36:33 -0000 @@ -128,9 +128,9 @@ public: virtual void endDocument( XmlDocument *document ); /*! Called after adding a fail test element. * \param document XML Document being created. =2D * \param testElement <FailedTest> element. + * \param testElement \<FailedTest\> element. * \param test Test that failed. * \param failure Test failure data. */ virtual void failTestAdded( XmlDocument *document, @@ -139,18 +139,18 @@ public: TestFailure *failure ); /*! Called after adding a successful test element. * \param document XML Document being created. =2D * \param testElement <Test> element. + * \param testElement \<Test\> element. * \param test Test that was successful. */ virtual void successfulTestAdded( XmlDocument *document, XmlElement *testElement, Test *test ); /*! Called after adding the statistic element. * \param document XML Document being created. =2D * \param statisticsElement <Statistics> element. + * \param statisticsElement \<Statistics\> element. */ virtual void statisticsAdded( XmlDocument *document, XmlElement *statisticsElement ); }; |