Fix for UBSan build
[platform/upstream/doxygen.git] / examples / docstring.py
1 """@package docstring
2 Documentation for this module.
3
4 More details.
5 """
6
7 def func():
8     """Documentation for a function.
9
10     More details.
11     """
12     pass
13
14 class PyClass:
15     """Documentation for a class.
16
17     More details.
18     """
19    
20     def __init__(self):
21         """The constructor."""
22         self._memVar = 0;
23    
24     def PyMethod(self):
25         """Documentation for a method."""
26         pass
27