How to document class attributes with NaturalDocs
- by HWende
Via
"""
Function: myfunc
Parameters:
a : First parameter
b : First parameter
"""
I can document a function and it gets listed in the class summary.
How can I do something similar with attributes?
Since I don't declare them in python I was hoping something like
""" ----------------------------------------------------------------------------
Attributes:
first - First attribute of the class
second - Second one
"""
That is not working at all...