Skip to content
Snippets Groups Projects
Commit b0b9aa6d authored by Andrew Heather's avatar Andrew Heather
Browse files

ENH: subModelBase - return bool from getModelProperty to identify read success

parent 10d08c28
Branches
Tags
No related merge requests found
......@@ -193,8 +193,9 @@ public:
) const;
//- Retrieve generic property from the sub-model
// Return true if found
template<class Type>
void getModelProperty(const word& entryName, Type& value) const;
bool getModelProperty(const word& entryName, Type& value) const;
//- Retrieve generic property from the sub-model
template<class Type>
......
......@@ -82,7 +82,7 @@ void Foam::subModelBase::setBaseProperty
template<class Type>
void Foam::subModelBase::getModelProperty
bool Foam::subModelBase::getModelProperty
(
const word& entryName,
Type& value
......@@ -94,13 +94,15 @@ void Foam::subModelBase::getModelProperty
if (inLine() && baseDict.found(modelName_))
{
baseDict.subDict(modelName_).readIfPresent(entryName, value);
return baseDict.subDict(modelName_).readIfPresent(entryName, value);
}
else if (baseDict.found(modelType_))
{
baseDict.subDict(modelType_).readIfPresent(entryName, value);
return baseDict.subDict(modelType_).readIfPresent(entryName, value);
}
}
return false;
}
......
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