1 Star 3 Fork 0

pengpeng5800/Qt 串口 网络 多线程

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
icom.h 591 Bytes
一键复制 编辑 原始数据 按行查看 历史
pengpeng5800 提交于 2021-09-22 05:51 . v1.0.0
#ifndef ICOM_H
#define ICOM_H
#include "commessage.h"
class ICom : public QObject
{
Q_OBJECT
public:
int timeout;
ICom() :timeout(1000) {}
virtual bool IsConnected() = 0;
virtual bool Connect(char *pAddr = nullptr, char *pPort = nullptr) = 0;
virtual bool Disconnect() = 0;
virtual char GetChar(int timeout = -1) = 0;
virtual void PutChar(char c, QString sTarget) = 0;
virtual int GetPacket(ComMessage &message, int timeout = -1) = 0;
virtual void PutPacket(ComMessage &message) = 0;
virtual QString GetStatus() = 0;
};
#endif // ICOM_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/pengpeng5800/Qt-SerialPort-Socket.git
git@gitee.com:pengpeng5800/Qt-SerialPort-Socket.git
pengpeng5800
Qt-SerialPort-Socket
Qt 串口 网络 多线程
master

搜索帮助