How do I create Qt-style documentation (Trolltech C ++ Qt or Riverbank PyQt docs) with Doxygen? I am documenting Python, and I would like to be able to improve the brief description of the default function that it creates.
In particular, I would like to see the return type (which can be specified by the user) and the parameters in short form.
For example:
Functions:
int getNumber(self)
str getString(self)
tuple getTuple(self, int numberOfElements=2)
Function Documentation:
int getNumber(self)
gets the number of items within a list as specified...
Definition at line 63 of ....
etc...
If this is not possible without changing the source, is there perhaps a tool other than Doxygen that processes Python documentation this way?
source
share