diff -r 000000000000 -r 42188c7ea2d9 Orb/Doxygen/examples/pyexample.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Orb/Doxygen/examples/pyexample.py Thu Jan 21 17:29:01 2010 +0000 @@ -0,0 +1,30 @@ +## @package pyexample +# Documentation for this module. +# +# More details. + +## Documentation for a function. +# +# More details. +def func(): + pass + +## Documentation for a class. +# +# More details. +class PyClass: + + ## The constructor. + def __init__(self): + self._memVar = 0; + + ## Documentation for a method. + # @param self The object pointer. + def PyMethod(self): + pass + + ## A class variable. + classVar = 0; + + ## @var _memVar + # a member variable