Skip to content
Snippets Groups Projects
Commit e5cbbcf7 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MPL] Use trailing '_' for private class members.

parent 268f79fc
No related branches found
No related tags found
No related merge requests found
Showing
with 22 additions and 22 deletions
\copydoc MaterialPropertyLib::BishopsPowerLaw::_m \copydoc MaterialPropertyLib::BishopsPowerLaw::m_
\copydoc MaterialPropertyLib::BishopsSaturationCutoff::_S_L_max \copydoc MaterialPropertyLib::BishopsSaturationCutoff::S_L_max_
\copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::_m \copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::m_
\copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::_p_cap_max \copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::p_cap_max_
\copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::_p_b \copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::p_b_
\copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::_S_L_res \copydoc MaterialPropertyLib::CapillaryPressureVanGenuchten::S_L_res_
\copydoc MaterialPropertyLib::CurveProperty::_independent_variable \copydoc MaterialPropertyLib::CurveProperty::independent_variable_
\copydoc MaterialPropertyLib::PermeabilityOrthotropicPowerLaw::_lambda \copydoc MaterialPropertyLib::PermeabilityOrthotropicPowerLaw::lambda_
\copydoc MaterialPropertyLib::PermeabilityOrthotropicPowerLaw::_k \copydoc MaterialPropertyLib::PermeabilityOrthotropicPowerLaw::k_
\copydoc MaterialPropertyLib::PorosityFromMassBalance::_phi0 \copydoc MaterialPropertyLib::PorosityFromMassBalance::phi0_
\copydoc MaterialPropertyLib::PorosityFromMassBalance::_phi_max \copydoc MaterialPropertyLib::PorosityFromMassBalance::phi_max_
\copydoc MaterialPropertyLib::PorosityFromMassBalance::_phi_min \copydoc MaterialPropertyLib::PorosityFromMassBalance::phi_min_
\copydoc MaterialPropertyLib::SaturationDependentSwelling::_lambda \copydoc MaterialPropertyLib::SaturationDependentSwelling::lambda_
\copydoc MaterialPropertyLib::SaturationDependentSwelling::_S_min \copydoc MaterialPropertyLib::SaturationDependentSwelling::S_min_
\copydoc MaterialPropertyLib::SaturationDependentSwelling::_p \copydoc MaterialPropertyLib::SaturationDependentSwelling::p_
\copydoc MaterialPropertyLib::SaturationDependentSwelling::_S_max \copydoc MaterialPropertyLib::SaturationDependentSwelling::S_max_
\copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::_phi0 \copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::phi0_
\copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::_phi_max \copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::phi_max_
\copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::_phi_min \copydoc MaterialPropertyLib::TransportPorosityFromMassBalance::phi_min_
...@@ -26,17 +26,17 @@ Component::Component(std::string const& component_name, ...@@ -26,17 +26,17 @@ Component::Component(std::string const& component_name,
{ {
if (properties) if (properties)
{ {
overwriteExistingProperties(_properties, *properties, this); overwriteExistingProperties(properties_, *properties, this);
} }
} }
Property const& Component::property(PropertyType const& p) const Property const& Component::property(PropertyType const& p) const
{ {
return *_properties[p]; return *properties_[p];
} }
bool Component::hasProperty(PropertyType const& p) const bool Component::hasProperty(PropertyType const& p) const
{ {
return _properties[p] != nullptr; return properties_[p] != nullptr;
} }
} // namespace MaterialPropertyLib } // namespace MaterialPropertyLib
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment