Style, Doxygen

This commit is contained in:
Klaus Basan
2019-10-22 14:01:41 +02:00
parent 6e42889ecb
commit 767aab6592
13 changed files with 61 additions and 36 deletions

View File

@@ -25,6 +25,7 @@ namespace BlackCore
//! Constructor
ClientResponse(const QString &sender, const QString &receiver, ClientQueryType queryType, const QStringList &responseData);
//! Unknow query?
bool isUnknownQuery() const { return m_queryType == ClientQueryType::Unknown; }
//! Message converted to tokens
@@ -36,8 +37,10 @@ namespace BlackCore
//! PDU identifier
static QString pdu() { return "$CR"; }
//! Properties @{
ClientQueryType m_queryType;
QStringList m_responseData;
QStringList m_responseData;
//! @}
private:
ClientResponse();