Is there some option to output Doxygen comments into some form that I can read into a C/C++/C# program? I am trying to create a code generator that uses the information generated by Oxygen comments. So I need to know the function name, argument types incl. if the argument is optional, return types, etc.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Is there some option to output Doxygen comments into some form that I can read into a C/C++/C# program? I am trying to create a code generator that uses the information generated by Oxygen comments. So I need to know the function name, argument types incl. if the argument is optional, return types, etc.
Yes, use. GENERATE_XML then you can parse the XML to extract the info you need.
The Extensions page describes several XML processing examples already built such as Doxygen.NET