1
2 """
3 Application class that implements pyFoamEchoPickledApplicationData
4 """
5
6 from .PyFoamApplication import PyFoamApplication
7
8 from .CommonPickledDataInput import CommonPickledDataInput
9
12 - def __init__(self,
13 args=None,
14 inputApp=None,
15 **kwargs):
16 description="""\ Reads a file with pickled application data
17 and if asked for prints it. Mainly used for testing the exchange of
18 data via pickled data
19 """
20
21 PyFoamApplication.__init__(self,
22 args=args,
23 description=description,
24 usage="%prog [options]",
25 nr=0,
26 changeVersion=False,
27 interspersed=True,
28 inputApp=inputApp,
29 **kwargs)
30
33
36
37
38