MITK-IGT
IGT Extension of MITK
Loading...
Searching...
No Matches
pyexample.py
Go to the documentation of this file.
5
6
9def func():
10 pass
11
12
15class PyClass:
16
17
18 def __init__(self):
19 self._memVar = 0;
20
21
23 def PyMethod(self):
24 pass
25
26
27 classVar = 0;
28
29
Documentation for a class.
Definition pyexample.py:15
PyMethod(self)
Documentation for a method.
Definition pyexample.py:23
int _memVar
a member variable
Definition pyexample.py:19
__init__(self)
The constructor.
Definition pyexample.py:18
func()
Documentation for a function.
Definition pyexample.py:9