Can somebody please help me to figure out how to comment python code correctly to get parsed by doxygen?
Somehow it ignores the tags. The output (HTML) shows the tags:
@brief Creates a new Hello object.
This Hello Object is beeing used to ...
@param name The name of the user.
Both variants I tried do not work:
class Hello:
"""@brief short description...
longer description
"""
def __init__(self, name):
"""@brief Creates a new Hello object.
This Hello Object is beeing used to ...
@param name The name of the user.
"""
self.name = name
class Hello:
"""\brief short description...
longer description
"""
def __init__(self, name):
"""\brief Creates a new Hello object.
This Hello Object is beeing used to ...
\param name The name of the user.
"""
self.name = name