AutomatableModel: added isAtInitValue()

This commit is contained in:
Tobias Doerffel
2014-01-20 23:05:45 +01:00
parent 67b99ac48f
commit 1a99ed8e2f

View File

@@ -135,6 +135,11 @@ public:
return castValue<T>( m_initValue );
}
bool isAtInitValue() const
{
return m_value == m_initValue;
}
template<class T>
inline T minValue() const
{