Doxygen get me docs similarly to
http://www.stack.nl/~dimitri/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html
But I want to see Functions with parameters similarly to c/c++.
Is there some settings for that?
Doxygen get me docs similarly to http://www.stack.nl/~dimitri/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html But I want to see Functions with parameters similarly to c/c++. Is there some settings for that?
| |||
feedback
|
If I understand the OPs question he has some functions within a module which are not member functions of any class and wants to document these with doxygen. This is possible and one way to do it is to add
at the top of the module and then document each function similar to:
Doxygen will also pick up the Python doc strings but that is more limited in that you cannot use all of Doxygen's tags | |||
feedback
|
self
after all, which is an ordinary parameter. And generally, doxygen is a somewhat unusual choice to document Python project. In years of Python programming I haven't seen a single project that uses doxygen for documentation. Why don't you just use standard, well-known documentation tools like epydoc or Sphinx? – lunaryorn Dec 13 '11 at 19:36