Classes | |
class | SayHello |
Functions | |
def | configure |
def | run |
Variables | |
string | my_message = "\nHello World from Python!\n" |
def DybHelloWorld::PyloWorld::configure | ( | argv = [] |
) |
Definition at line 38 of file PyloWorld.py.
00038 : 00039 if len(argv): 00040 global my_message 00041 my_message = argv[0] 00042 print 'Configure with my_message=',my_message 00043 return 00044 def run(app):
def DybHelloWorld::PyloWorld::run | ( | app | ) |
Definition at line 45 of file PyloWorld.py.
00045 : 00046 global my_message 00047 print 'Making a SayHello with',my_message 00048 alg = SayHello("Friendly",message=my_message) 00049 app.addAlgorithm(alg) 00050 return 00051 00052 00053
string DybHelloWorld::PyloWorld::my_message = "\nHello World from Python!\n" [static] |
Definition at line 37 of file PyloWorld.py.