refs #91 & #124 using override and \copydoc throughout blackmisc

This commit is contained in:
Mathew Sutcliffe
2014-02-16 23:52:42 +00:00
parent 3c8d4819e9
commit 35e0c3e085
49 changed files with 405 additions and 689 deletions

View File

@@ -48,10 +48,9 @@ namespace BlackMisc
protected:
/*!
* \brief Are the set values valid / in range?
* \return
* \copydoc CAvionicsBase::validValues
*/
bool validValues() const
virtual bool validValues() const override
{
if (this->isDefaultValue()) return true; // special case
return
@@ -102,10 +101,9 @@ namespace BlackMisc
}
/*!
* \brief Virtual method to return QVariant, used with DBUS QVariant lists
* \return
* \copydoc CValueObject::toQVariant
*/
virtual QVariant toQVariant() const
virtual QVariant toQVariant() const override
{
return QVariant::fromValue(*this);
}