Doxygen fixes

This commit is contained in:
Klaus Basan
2014-01-20 13:56:36 +01:00
parent f0b97aac24
commit 60422376bb
8 changed files with 31 additions and 109 deletions

View File

@@ -142,25 +142,33 @@ namespace BlackMisc
virtual int compareImpl(const CValueObject &other) const;
/*!
* \brief Stream to DBus <<
* \param argument
* \copydoc CValueObject::marshallToDbus()
*/
virtual void marshallToDbus(QDBusArgument &argument) const;
/*!
* \brief Stream from DBus >>
* \param argument
* \copydoc CValueObject::unmarshallFromDbus()
*/
virtual void unmarshallFromDbus(const QDBusArgument &argument);
protected:
/*!
* \brief Device type, @see CAudioDevice::DeviceType
*/
DeviceType m_type;
/*!
* deviceIndex is the number is the reference for the VVL. The device is selected by this index.
* The managing class needs to take care, that indexes are valid.
*/
DeviceType m_type;
qint16 m_deviceIndex;
/*!
* \brief Device name
*/
QString m_deviceName;
/*!
* We use a DBus based system. Hence an audio device can reside on a different
* computer, this here is its name
*/
QString m_hostName;
private: