refs #345 Style and doxygen.

This commit is contained in:
Mathew Sutcliffe
2014-10-28 19:46:52 +00:00
parent 8f5315b846
commit 798b198d4e
78 changed files with 268 additions and 531 deletions

View File

@@ -25,7 +25,6 @@ namespace BlackMisc
class CKeyboardKey : public CValueObject
{
public:
//! Properties by index
enum ColumnIndex
{
@@ -62,9 +61,6 @@ namespace BlackMisc
//! Constructor
CKeyboardKey(Qt::Key keyCode, Modifier modifier1 = ModifierNone, Modifier modifier2 = ModifierNone);
//! Destructor
~CKeyboardKey() {}
//! \copydoc CValueObject::toQVariant()
virtual QVariant toQVariant() const override { return QVariant::fromValue(*this); }
@@ -230,8 +226,6 @@ namespace BlackMisc
/*!
* CKeyboardKey::toStringRepresentation
* \param key
* \return
*/
static QString toStringRepresentation(int key);
@@ -260,8 +254,8 @@ namespace BlackMisc
Modifier m_modifier1;
Modifier m_modifier2;
};
} // class
} // BlackMisc
}
}
BLACK_DECLARE_TUPLE_CONVERSION(BlackMisc::Hardware::CKeyboardKey, (o.m_qtKey, o.m_modifier1, o.m_modifier2))
Q_DECLARE_METATYPE(BlackMisc::Hardware::CKeyboardKey)