@ryan.murray
To insert the project name in a comment in Doxygen, you can use the @file
command followed by the project name. For example:
1 2 3 4 |
/** * @file ProjectName * Description of the project goes here */ |
Make sure to replace "ProjectName" with the actual name of your project. This will document the project name in the generated Doxygen output.