![]() |
Peano
|
Represents the total output generated from the Peano4 data model plus all the operations on it. More...
Public Member Functions | |
__init__ (self) | |
clear (self) | |
The clear eliminates all artefacts, but it does not erase the Makefile. | |
add (self, artefact, append=True) | |
generate (self, overwrite, directory, subdirectories=[]) | |
Iterates over all stored artefacts and, hence, finally generates all the C files, makefiles, and so forth. | |
Data Fields | |
artefacts | |
readme | |
makefile | |
Represents the total output generated from the Peano4 data model plus all the operations on it.
This is basically a big collection.
peano4.output.Output.Output.add | ( | self, | |
artefact, | |||
append = True ) |
Definition at line 29 of file Output.py.
References peano4.output.Output.Output.artefacts.
peano4.output.Output.Output.clear | ( | self | ) |
The clear eliminates all artefacts, but it does not erase the Makefile.
This is important as I don't want to loose all the makefile info. If you want to clear the makefile, too, you have to invoke a clear on it.
Definition at line 18 of file Output.py.
References peano4.output.Output.Output.artefacts, peano4.output.Output.Output.makefile, and peano4.output.Output.Output.readme.
Referenced by peano4.output.Makefile.Makefile.__init__().
peano4.output.Output.Output.generate | ( | self, | |
overwrite, | |||
directory, | |||
subdirectories = [] ) |
Iterates over all stored artefacts and, hence, finally generates all the C files, makefiles, and so forth.
Definition at line 36 of file Output.py.
References peano4.output.Output.Output.artefacts, peano4.output.Output.Output.generate(), peano4.output.Output.Output.makefile, and peano4.output.Output.Output.readme.
Referenced by peano4.Project.Project.build(), and peano4.output.Output.Output.generate().
peano4.output.Output.Output.artefacts |
Definition at line 13 of file Output.py.
Referenced by peano4.output.Output.Output.add(), peano4.output.Output.Output.clear(), and peano4.output.Output.Output.generate().
peano4.output.Output.Output.makefile |
Definition at line 15 of file Output.py.
Referenced by peano4.output.Output.Output.clear(), and peano4.output.Output.Output.generate().
peano4.output.Output.Output.readme |
Definition at line 14 of file Output.py.
Referenced by peano4.output.Output.Output.clear(), and peano4.output.Output.Output.generate().