About 51 results
Open links in new tab
  1. How to document Python code using Doxygen - Stack Overflow

    I like Doxygen to create documentation of C or PHP code. I have an upcoming Python project and I think I remember that Python doesn't have /* .. */ comments, and also has its own self …

  2. Best Tips for documenting code using doxygen? [closed]

    Sep 9, 2008 · My team is starting to document our C code using doxygen, paying particular attention to our public API headers. There appears to be a lot of flexibility and different special …

  3. How to make an introduction page with Doxygen - Stack Overflow

    Feb 29, 2012 · I made documentation for my SDK, using Doxygen. It contains the list of files, namespaces, classes, types etc. - everything that I placed as Doxygen comments in the code. …

  4. What's the right way to reference a parameter in Doxygen?

    Doxygen provides the command \p for indicating that the next word is a parameter to the function. You would use it like so: ... the \p x and \p y coordinates are used to ... I believe by default this …

  5. How to get a single PDF document from Doxygen? - Stack Overflow

    When I generate Doxygen documentation in PDF format, I get plenty of different files with a single diagram in each. Is it possible to obtain a single PDF document, organized as a book, roughly …

  6. How to use doxygen to create UML class diagrams from C++ source

    Jan 21, 2011 · I have been searching for some material that describes how to generate simple class diagrams with doxygen, but couldn't find one. I need to create UML class diagrams as …

  7. Visual Studio with Doxygen for documentation, or should we use ...

    Jan 8, 2010 · We are currently using Doxygen to document code written in C/C++, PHP and Java. To have a consistent environment, it would be nice to use it for C# documentation as well. …

  8. Doxygen isn't generating documentation for source files

    Mar 21, 2015 · Doxygen comments optionally contain commands to annotate what the comment is for. for example \file identifies the comment as the description of the source code file. HTH.

  9. c++ - Documenting enum values with doxygen - Stack Overflow

    Dec 7, 2012 · The doxygen changelog says that enum class is supported in Doxygen 1.8.2, so I suspect there may be some minor syntax issue in your commands. Could you please compare …

  10. Documenting Macro Functions in C++ with Doxygen

    How do I document a macro function in C++ using Doxygen, and refer to it in the documentation of my non-Evil code? More specifically, I have some regular class called "Message" defined in …