diff --git a/src/lagrangian/intermediate/submodels/SubModelBase.H b/src/lagrangian/intermediate/submodels/SubModelBase.H index bc073213c7..54b42b5a8a 100644 --- a/src/lagrangian/intermediate/submodels/SubModelBase.H +++ b/src/lagrangian/intermediate/submodels/SubModelBase.H @@ -163,23 +163,23 @@ public: //- Return non-const access to the owner cloud for manipulation CloudType& owner(); - //- Retrieve generic property from sub-model + //- Retrieve generic property from the sub-model template Type getModelProperty(const word& entryName) const; - //- Retrieve generic property from sub-model + //- Retrieve generic property from the sub-model template void getModelProperty(const word& entryName, Type& value) const; - //- Add generic property from sub-model + //- Add generic property to the sub-model template void setModelProperty(const word& entryName, const Type& value); - //- Retrieve generic property from base model + //- Retrieve generic property from the base model template Type getBaseProperty(const word& entryName) const; - //- Add generic property from base model + //- Add generic property to the base model template void setBaseProperty(const word& entryName, const Type& value);