I am using doxygen and have the following code:
def __init__(self): ''' ''' if not '_ready' in dir(self) or not self._ready: self._stream = sys.stderr
For some reason, doxygen tells me that self._stream
( Member _stream
) has no documents. Can I document it using a comment, as described in the doxygen documentation in the "Posting documentation after the participants" section , and if so, how right?
** edit: ** it looks like I don't have a new line, for example here:
class escapeMode(object): ''' Enum to represent the escape mode. ''' ALWAYS = 1
Doxygen only complains that ALWAYS
undocumented, I would like to avoid inserting new lines after every new attribute that I document this way, since it destroys the value of new lines to separate logical blocks such as loops, or if statements from the surrounding code .
source share