ENH: stateFunctionObject - added helper functions to retrieve object result info

This commit is contained in:
Andrew Heather
2019-01-21 10:58:39 +00:00
parent bd79f1d5ab
commit 7ffa7bb923
2 changed files with 73 additions and 1 deletions

View File

@ -250,6 +250,15 @@ public:
//- Return result entries for named object
List<word> objectResultEntries(const word& objectName) const;
//- Write the results entries for all objects to stream
void writeResultEntries(Ostream& os) const;
//- Write the results entries for named object to stream
void writeResultEntries(const word& objectName, Ostream& os) const;
//- Write the results entries for all objects to stream
void writeAllResultEntries(Ostream& os) const;
};