Skip to content
Snippets Groups Projects
Commit 90be0ef2 authored by andy's avatar andy
Browse files

ENH: Added access function to 'names'

parent 441d1d0d
Branches
Tags
No related merge requests found
......@@ -208,6 +208,12 @@ Foam::functionObjectFile::~functionObjectFile()
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
const Foam::wordHashSet& Foam::functionObjectFile::names() const
{
return names_;
}
Foam::OFstream& Foam::functionObjectFile::file()
{
if (!Pstream::master())
......
......@@ -138,6 +138,9 @@ public:
// Member Functions
//- Return const access to the names
const wordHashSet& names() const;
//- Return access to the file (if only 1)
OFstream& file();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment