Fetch the repository succeeded.
This action will force synchronization from LibQQt应用程序开发组织/LibQQt, which will overwrite any changes that you have made since you forked the repository, and can not be recovered!!!
Synchronous operation will process in the background and will refresh the page when finishing processing. Please be patient.
#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
Sign in for post a comment
Comment ( 0 )