You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Many classes in SMTK use VTK-style documentation conventions. Since SMTK does not have the perl scripts that VTK uses to convert these comments into Doxygen format, they are not being included in the generated reference documentation.
The text was updated successfully, but these errors were encountered:
Many classes in SMTK use VTK-style documentation conventions. Since SMTK does not have the perl scripts that VTK uses to convert these comments into Doxygen format, they are not being included in the generated reference documentation.
—
Reply to this email directly or view it on GitHub #51.
The generated docs (where switching to doxygen) would look exactly like VTK's generated docs because that's what VTK uses. The code format would switch from this at the top of the header
// .NAME smtkAttribute.h - Represents a standalone piece of simulation information
// .SECTION Description
// .SECTION See Also
and this before methods in the header
// Description:
// Blah.
int blah();
to this just above the class declaration:
/**\brief Represents a standalone piece of simulation information
*
* \sa
*/
and this just above each method implementation (i.e., not in the header):
Many classes in SMTK use VTK-style documentation conventions. Since SMTK does not have the perl scripts that VTK uses to convert these comments into Doxygen format, they are not being included in the generated reference documentation.
The text was updated successfully, but these errors were encountered: