Doxygen style
This guide introduces a consistent style for documenting HypedDbg source code using Doxygen
This guide introduces a consistent style for documenting HyperDbg using Doxygen.
If you want to create a pull request and contribute in HyperDbg, please follow the Doxygen guides in the source code.
We follow the Javadoc syntax to mark comment blocks.
These have the general form for functions, structures, enums, global variables:
Example:
Doxygen Tags
This is the allowed set of Doxygen tags that can be used.
@brief: Starts a paragraph that serves as a brief description.
@param: Describes function parameters.
@return: Describes return values.
@see: Describes a cross-reference to classes, functions, methods, variables, files, or URL.
@warning: Starts a paragraph where one or more warning messages may be entered.
Also, don't forget to add your name on top of the file with @author
tag.
Last updated