How to insert the project name in a comment in doxygen?

by ryan.murray , in category: Third Party Scripts , 10 days ago

How to insert the project name in a comment in doxygen?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by kadin , 9 days ago

@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.