EclProblem: add docstrings for the materialLawManager() methods

This commit is contained in:
Andreas Lauser 2016-11-30 14:24:15 +01:00
parent 4ef6d5d1ce
commit 4a0832030c

View File

@ -710,9 +710,18 @@ public:
const MaterialLawParams& materialLawParams(unsigned globalDofIdx) const
{ return materialLawManager_->materialLawParams(globalDofIdx); }
/*!
* \brief Returns the ECL material law manager
*
* Note that this method is *not* part of the generic eWoms problem API because it
* would force all problens use the ECL material laws.
*/
const std::shared_ptr<EclMaterialLawManager> materialLawManager() const
{ return materialLawManager_; }
/*!
* \copydoc materialLawManager()
*/
std::shared_ptr<EclMaterialLawManager> materialLawManager()
{ return materialLawManager_; }