代码拉取完成,页面将自动刷新
#ifndef COMMESSAGE_H
#define COMMESSAGE_H
#include <QObject>
#include <QByteArray>
#include <QString>
#define SERIAL_PORT "COM1"
#define SERIAL_RATE "115200"
#define LOCAL_IPADD "192.168.1.123"
#define LOCAL_PORT 6250
#define REMOTE_PORT 9999
class ComMessage
{
public:
ComMessage() { }
~ComMessage() { }
char at(const int i) const
{
return this->m_data.at(i);
}
inline void set(int pos, char c)
{
this->m_data[pos] = c;
}
inline void resize(const int size)
{
this->m_data.resize(size);
}
inline char* data()
{
return this->m_data.data();
}
inline QByteArray getData()
{
return this->m_data;
}
inline int size() const
{
return this->m_data.size();
}
inline bool empty() const
{
return (this->m_data.size()==0);
}
void set(QByteArray ba)
{
this->m_data = ba;
}
QString m_target;
private:
QByteArray m_data;
};
Q_DECLARE_METATYPE(ComMessage)
#endif // COMMESSAGE_H
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。