Doxygen Command Help Required
-
Anyone now how to emebed tags in Doxygen help eg. //////////////////////////////////////////////////////////////////////////////////////////////////// /// <summary>Save XML File</summary> /// /// <remarks>The XML file generated will have the following layout: /// /// <results> /// <count>99</count> /// </results> /// /// </remarks> /// //////////////////////////////////////////////////////////////////////////////////////////////////// I've tried <pre>, <code>, <c> and <example> and none of them stop me from getting the following warning: warning: Warning: Unsupported xml/html tag <results> not found warning: Warning: Unsupported xml/html tag <count> not found warning: Warning: Unsupported xml/html tag </count> not found warning: Warning: Unsupported xml/html tag </results> not found
AxisFirst For Business
-
Anyone now how to emebed tags in Doxygen help eg. //////////////////////////////////////////////////////////////////////////////////////////////////// /// <summary>Save XML File</summary> /// /// <remarks>The XML file generated will have the following layout: /// /// <results> /// <count>99</count> /// </results> /// /// </remarks> /// //////////////////////////////////////////////////////////////////////////////////////////////////// I've tried <pre>, <code>, <c> and <example> and none of them stop me from getting the following warning: warning: Warning: Unsupported xml/html tag <results> not found warning: Warning: Unsupported xml/html tag <count> not found warning: Warning: Unsupported xml/html tag </count> not found warning: Warning: Unsupported xml/html tag </results> not found
AxisFirst For Business
-
You've not understood what I'm trying to acheive. I'm trying to document the layout of the XML file generated by a function which means I need to instruct Doxygen to ignore a block of text by placing it inside a given tag. The problem is I can't find the right tag.
-
You've not understood what I'm trying to acheive. I'm trying to document the layout of the XML file generated by a function which means I need to instruct Doxygen to ignore a block of text by placing it inside a given tag. The problem is I can't find the right tag.
-
Anyone now how to emebed tags in Doxygen help eg. //////////////////////////////////////////////////////////////////////////////////////////////////// /// <summary>Save XML File</summary> /// /// <remarks>The XML file generated will have the following layout: /// /// <results> /// <count>99</count> /// </results> /// /// </remarks> /// //////////////////////////////////////////////////////////////////////////////////////////////////// I've tried <pre>, <code>, <c> and <example> and none of them stop me from getting the following warning: warning: Warning: Unsupported xml/html tag <results> not found warning: Warning: Unsupported xml/html tag <count> not found warning: Warning: Unsupported xml/html tag </count> not found warning: Warning: Unsupported xml/html tag </results> not found
AxisFirst For Business
-
Have you tried using > and <
You may be right I may be crazy -- Billy Joel -- Within you lies the power for good - Use it!
Doesn't look too pretty in the source file but does the job. Thanks for you help.
-
Anyone now how to emebed tags in Doxygen help eg. //////////////////////////////////////////////////////////////////////////////////////////////////// /// <summary>Save XML File</summary> /// /// <remarks>The XML file generated will have the following layout: /// /// <results> /// <count>99</count> /// </results> /// /// </remarks> /// //////////////////////////////////////////////////////////////////////////////////////////////////// I've tried <pre>, <code>, <c> and <example> and none of them stop me from getting the following warning: warning: Warning: Unsupported xml/html tag <results> not found warning: Warning: Unsupported xml/html tag <count> not found warning: Warning: Unsupported xml/html tag </count> not found warning: Warning: Unsupported xml/html tag </results> not found
AxisFirst For Business
The \verbatim tag instructs the Doxygen parser to skip over a block of text. I'd have preferred to use an XML tag but it works and remains readable in the source.