Tagged Questions
Doxygen is a multilanguage documentation generation application for C++, C, Java, Objective-C, Python, IDL, Fortran, VHDL, PHP and C# that supports a wide variety of output formats including RTF, HTML, XML and PDF.
56
votes
17answers
12k views
Best Tips for documenting code using doxygen?
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 commands in doxygen, ...
42
votes
7answers
11k views
Python documentation generator
I'm looking for a documentation generator for python. I'm familiar with javadoc, and I tried Doxygen, but it seems quite unfit and counter-intuitive for Python.
Any ideas?
Adam
EDIT
Apart from the ...
39
votes
4answers
2k views
Why does a C comment like /* */ need '<'?
My teams C-code guidelines write that it'd be better to place a '<' in a comment like shown below:
#define MAX_PACK_ITEM_NUM 50 /**< max number of item */
I wonder, what is the real use of ...
38
votes
6answers
9k views
Suggest a good Doxygen stylesheet
I am using Doxygen to generate HTML documentation from my code. However I find that default stylesheet has quite poor choice of fonts and layout. I know I can write my own CSS file to get exactly the ...
23
votes
3answers
7k views
Doxygen vs Javadoc
I just realized from an article in CACM that Doxygen works with Java (and several other languages) too. But Java has already the Javadoc tool. Can someone explain what are the pros and cons of either ...
17
votes
3answers
747 views
Is phpDocumentor dead?
Or is it just at a 'finished' state? I've used PHPDoc for many years on all my PHP projects, but I recently noticed that the last post on the PHPDoc website was from 2008. So I'm wondering if it's ...
16
votes
5answers
4k views
Doxygen alternative for C++
While doxygen seems to be good at indexing a large C++ project, I have some major gripes with it.
The generated output is ugly and poorly organized. Just finding a function in doxygen websites is ...
15
votes
6answers
5k views
Where to put the doxygen comment blocks for an internal library - in H or in CPP files?
The common sense tells that the Doxygen comment blocks have to be put in the header files where the classes, structs, enums, functions, declarations are. I agree that this is a sound argument for a ...
15
votes
4answers
12k views
Can I document Python code with doxygen (and does it make sense)?
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-documentation ...
14
votes
1answer
479 views
Doxygen report “potential recursive class relation”
I have a C++ templated class base::Foo<class T>, and I have in another file a class base::bar::Foo : public base::Foo<Baz>. Doxygen seems not to like this, as it throws an error
...
14
votes
3answers
877 views
C++ meta-programming doxygen documentation
I am documenting some code which uses meta-programming heavily, for example:
template<rysq::type A, rysq::type B, rysq::type C, rysq::type D, class Transform>
struct ...
14
votes
9answers
3k views
Doxygen, too heavy to maintain?
I am currently starting using doxygen to document my source code. I have notice that the syntax is very heavy, every time I modify the source code, I also need to change the comment and I really have ...
13
votes
2answers
2k views
Change doxygen comment style in Eclipse
Does anyone know how to edit the style used for Doxygen comments in Eclipse CDT?
In other words type /** and pressing enter on a line before a function currently gives me something like:
/**
*
* ...
12
votes
2answers
234 views
Making Doxygen read double-slash C++ comments as markup
I'm trying to set up automated Doxygen runs on our massive 78,000 file C++ codebase. It's doing okay with extracting basic type and hierarchy information, but I'd like to make it smarter about picking ...
10
votes
2answers
1k views
Doxygen and Objective-C categories
Although the latest releases of Doxygen claim better handling of Objective-C categories, it still seems to choke on categories in my source code. I'm wondering if someone has gotten it to document ...
10
votes
5answers
2k views
Documenting C++/CLI library code for use from c# - best tools and practices?
I'm working on a project where a c++/cli library is being used primarily from a c# application.
Is there any way to make the code comments in c++/cli visible to c# intellisence within visual studio?
...
9
votes
4answers
259 views
Should generated documentation go into source control?
I've been recently (finally) getting around to documenting one of my open source projects. The project is a class library for .Net. I'm using Doxygen for generating HTML documentation from the source ...
9
votes
4answers
5k views
Using Doxygen with C, do you comment the function prototype or the definition? Or both?
I'm using Doxygen with some embedded C source. Given a .c/.h file pair, do you put Doxygen comments on the function prototype (.h file) or the function definition (.c file), or do you duplicate them ...
9
votes
11answers
5k views
Graphviz for documentation
I noticed that doxygen uses the graphviz library for creating diagrams. Have you ever used graphviz for generating documentation? Is it worth learning the graphviz for documentation purposes outside ...
9
votes
5answers
2k views
How to get doxygen to run faster?
Doxygen is a bit slow - it takes about a couple of minutes to process my whole project, so for small incremental changes this is longer than actually building the rest of my code. There are thousands ...
8
votes
1answer
591 views
Can Eclipse hover tips display Doxygen comments from header file?
I'm using Eclipse CDT to write C++ code. Having read several discussions here on StackOverflow about whether to place doxygen documentation in the header file or the implementation file, it seems the ...
8
votes
3answers
297 views
Doxygen strange problem while documenting PHP if
I face a strange problem while I'm trying to document a project of mine. I have the following code:
//! Set default ::$action for called controller. If no action is called, default (index) will be ...
8
votes
1answer
557 views
How to document all exceptions a function might throw?
If you have a public function which may throw an exception which uses other (private or public) helper functions which can also throw exceptions I think you should document what exceptions the public ...
8
votes
4answers
2k views
phpDocumentor alternative consuming less memory
Okay, I'm fed up with phpDocumentator. It consumes way much more memory (1.4 GB) and time (5 minutes on 2.6GHz Core 2 Duo) than I'm willing to give it. Does there exist some really compatible program ...
8
votes
1answer
3k views
Documenting namespaces with Doxygen
I'm having issues with Doxygen recognizing namespaces and modules. I believe the issue surrounds whether to place the \addtogroup within the namespace or outside the namespace.
Example 1, outside ...
7
votes
1answer
899 views
Doxygen warning: no uniquely matching class member found for
I'm using Doxygen for a C++ project. When I'm building the html doc, I get the following error:
C:/Amir/Programming/Eclipse C++/CacheOptimization/src/CacheLruNaiveAlgorithm.cpp:19:
warning: ...
7
votes
1answer
742 views
Using Doxygen Correctly
I have been trying to document my C++ project using Doxygen, with little success: Doxygen to fails recognize certain macros, and consequently entire functions are misinterpreted and most of time does ...
7
votes
6answers
447 views
What are the virtues of using XML comments in .NET?
I can't understand the virtues of using XML comments. I know they can be converted into nice documentation external to the code, but the same can be achieved with the much more concise DOxygen syntax. ...
7
votes
1answer
539 views
Document inherited Obj-C methods without Doxygen/compiler warnings?
Background:
I'm creating a hierarchy of composite dictionary data structures in Objective-C, and am inheriting from NSMutableDictionary so these classes can be used everywhere an ...
7
votes
5answers
1k views
Doxygen documentation for the Boost libraries?
Is there doxygen documentation of the Boost libraries somewhere on the web?
I could create my own, but I think it should already exist somewhere on the web? Thanks!
7
votes
2answers
3k views
Custom tags with Doxygen
I am trying to figure out if there is a way to create a custom tag using Doxygen. I did find the ALIAS config line but that does not do exactly what I need.
Basically in code I want to be able to ...
6
votes
3answers
92 views
Class Documentation Suggestions
We are a Microsoft shop, concentrated on using C#. We have several projects, including websites, Windows services, and class libraries, that incorporate XML comments.
I'm looking to generate ...
6
votes
1answer
246 views
What Doxygen alternative would Dave DeLong use?
Here's a sure way to get downvoted, kickbanned and laughed at, but I'm gonna try it anyway.
Yesterday Dave DeLong answered a question of mine. It wasn't the answer I was looking for, but in the ...
6
votes
2answers
252 views
Create new custom command that will add to a section in Doxygen
I would like to create a custom command in Doxygen similar to \fn \param or \var.
For example I would like to be able to create a \option command which I would use as follows:
/**
\option option_1 ...
6
votes
3answers
360 views
How to document a function object with doxygen?
How should I document a function object (AKA functor) with doxygen? It feels misleading to just document it as a regular class. I find it much better to think of a function object as a function with ...
6
votes
1answer
338 views
Doxygen not documenting static classes?
I've been recently using Doxygen for a project of mine. I'm having a problem though that it won't generate the proper documentation for a C# static class. Is there some option I have to enable?
My ...
6
votes
2answers
320 views
Documenting custom programming language API
My project features a custom C-like interpreted scripting language with fairly massive API - several classes with 120+ methods, some constants and enums etc. The project is written in C++.
The whole ...
6
votes
4answers
831 views
Doxygen: how to describe class member variables in php?
I'm trying to use doxygen to parse php code into xml output.
Doxygen does not parse description of class member variables.
Here is my sample php file:
<?php
class A
{
/**
* Id on page.
...
6
votes
3answers
429 views
Doxygen-like for .sql files in a php application
We are using Doxygen to document our php application and it's working very well but we have a problem for the database structure: we would like to document the .sql file we are using to create the ...
6
votes
1answer
1k views
Doxygen for C++ template class member specialization
When I write class templates, and need to fully-specialize members of those classes, Doxygen doesn't recognize the specialization - it documents only the generic definition, or (if there are only ...
6
votes
2answers
221 views
Is there a standard for documenting GET/POST parameters?
In a PHP project, even when front controller logic is used for the main application, there can be many stand-alone scripts, ajax snippets and so on.
Is there a standardized way - either PHPDoc or ...
6
votes
3answers
4k views
Can I use DoxyGen to document ActionScript code?
How do I Configuring DoxyGen to document ActionScript files?
I've included the *.as and *.asi files in doxygen's search pattern, but the classes, functions and variables don't show there.
5
votes
1answer
95 views
How to document enumeration values with same name with Doxygen?
I'm trying to document two class enumerations containing some similar values with Doxygen. But that generates duplicates text for each field with the same name.
Here are my two enumerations :
/*!
...
5
votes
3answers
717 views
Create “Quick Help” Entry in XCode
i wanted to ask how i can create quick help entries in xcode for my own code?
i just want it as a coding support, meaning like the eclipse functionality when coding java.
in eclipse you get a comment ...
5
votes
4answers
651 views
Is doxygen the (de facto) standard documentation syntax specification?
We all have the good habit of documenting our code, right?
Nowadays, in-code documentation itself has a syntax. It's almost like a programming language onto itself. The questions are:
What (How ...
5
votes
3answers
957 views
How to include custom files in Doxygen
I would like to add custom (non-project) files to generate some extra pages with Doxygen.
I am (was actually) unsure how these files should be named and how their content should be formatted.
5
votes
1answer
2k views
doxygen C++ inline template documentation
Is there some way to document template parameters like this:
template<
int N, ///< description
typename T ///< description
>
rather than listing each parameter with tparam?
...
5
votes
2answers
581 views
Doxygen C++ comment string parser in python?
Does anybody know of a python module to parse a doxygen style C++ comment string? I mean a string like this (simple example):
/**
* A constructor.
* A more elaborate description of the ...
5
votes
3answers
8k views
How to use eclox, the doxygen plugin for Eclipse
How do I get eclox working in Eclipse 3.5?
I'm using Ubuntu 9.04. I installed Doxygen from ubuntu repositories(version 1.5.8). Then I installed eclox on eclipse through the update site.
Despite ...
5
votes
2answers
554 views
How can I include a subset of a .cpp file in a Doxygen comment?
I'm trying to write some Doxygen comment blocks, and I'd like to include example snippets of code. Of course, I'd like the examples to actually compile so they don't get stale.
My example.cpp (that ...