mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5101 clang-format: Allow short functions on a single line
Use AllowShortFunctionsOnASingleLine: InlineOnly
This commit is contained in:
@@ -38,44 +38,17 @@ class RimEnsembleStatistics : public caf::PdmObject
|
||||
public:
|
||||
RimEnsembleStatistics();
|
||||
|
||||
bool isActive() const;
|
||||
bool hideEnsembleCurves() const
|
||||
{
|
||||
return m_hideEnsembleCurves;
|
||||
}
|
||||
bool basedOnFilteredCases() const
|
||||
{
|
||||
return m_basedOnFilteredCases;
|
||||
}
|
||||
bool showP10Curve() const
|
||||
{
|
||||
return m_showP10Curve;
|
||||
}
|
||||
bool showP50Curve() const
|
||||
{
|
||||
return m_showP50Curve;
|
||||
}
|
||||
bool showP90Curve() const
|
||||
{
|
||||
return m_showP90Curve;
|
||||
}
|
||||
bool showMeanCurve() const
|
||||
{
|
||||
return m_showMeanCurve;
|
||||
}
|
||||
bool showCurveLabels() const
|
||||
{
|
||||
return m_showCurveLabels;
|
||||
}
|
||||
cvf::Color3f color() const
|
||||
{
|
||||
return m_color;
|
||||
}
|
||||
bool isActive() const;
|
||||
bool hideEnsembleCurves() const { return m_hideEnsembleCurves; }
|
||||
bool basedOnFilteredCases() const { return m_basedOnFilteredCases; }
|
||||
bool showP10Curve() const { return m_showP10Curve; }
|
||||
bool showP50Curve() const { return m_showP50Curve; }
|
||||
bool showP90Curve() const { return m_showP90Curve; }
|
||||
bool showMeanCurve() const { return m_showMeanCurve; }
|
||||
bool showCurveLabels() const { return m_showCurveLabels; }
|
||||
cvf::Color3f color() const { return m_color; }
|
||||
|
||||
bool includeIncompleteCurves() const
|
||||
{
|
||||
return m_includeIncompleteCurves;
|
||||
}
|
||||
bool includeIncompleteCurves() const { return m_includeIncompleteCurves; }
|
||||
|
||||
void disableP10Curve( bool disable );
|
||||
void disableP50Curve( bool disable );
|
||||
|
||||
Reference in New Issue
Block a user