STYLE: Code comment corrections

This commit is contained in:
andy
2012-09-27 13:03:55 +01:00
parent e1d4e5d41d
commit e4ac87231e

View File

@ -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<class Type>
Type getModelProperty(const word& entryName) const;
//- Retrieve generic property from sub-model
//- Retrieve generic property from the sub-model
template<class Type>
void getModelProperty(const word& entryName, Type& value) const;
//- Add generic property from sub-model
//- Add generic property to the sub-model
template<class Type>
void setModelProperty(const word& entryName, const Type& value);
//- Retrieve generic property from base model
//- Retrieve generic property from the base model
template<class Type>
Type getBaseProperty(const word& entryName) const;
//- Add generic property from base model
//- Add generic property to the base model
template<class Type>
void setBaseProperty(const word& entryName, const Type& value);