The current repo belongs to Paused status, and some functions are restricted. For details, please refer to the description of repo status
1 Star 0 Fork 156

s_baoshan / LibQQt
Paused

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
qqtmessage.h 1.18 KB
Copy Edit Raw Blame History
T.D.R. authored 2018-05-12 21:50 . support msvc2015
#ifndef QQTMESSAGE_H
#define QQTMESSAGE_H
#include <QObject>
#include <qqt-local.h>
/**
* @brief 语法类 定义报文格式
*/
class QQTSHARED_EXPORT QQtMessage : public QObject
{
Q_OBJECT
public:
inline explicit QQtMessage ( QObject* parent = 0 ) : QObject ( parent ) {}
inline virtual ~QQtMessage() {}
public:
/**
* @brief 最小报文长
* 这个函数不会更改局部变量
* @return
*/
inline virtual quint16 minlength() const {
return 0x00;
}
/**
* @brief 最大报文长
* 这个函数不会更改局部变量
* @return
*/
inline virtual quint16 maxlength() const {
return 0x07FF;
}
/**
* @brief 将报文组装为流
* 这个函数不会更改局部变量
* @param l
* @param m
*/
inline virtual void packer ( QByteArray& ) const {}
/**
* @brief 从流中解析报文
* 这个函数会更改局部变量
* @param m
* @param l
*/
inline virtual void parser ( const QByteArray& ) {}
signals:
public slots:
private:
/**
* example
* quint32 a;
* QByteArray b;
* quint8 c;
*/
};
#endif // QQTMESSAGE_H
C/C++
1
https://gitee.com/floydshow/LibQQt.git
git@gitee.com:floydshow/LibQQt.git
floydshow
LibQQt
LibQQt
master

Search