1 Star 2 Fork 1

Mars160/MicroToDo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
server.h 438 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mars160 提交于 2021-10-02 11:46 . 获取token
#ifndef SERVER_H
#define SERVER_H
#include <string>
#include <QtCore>
#include <QTcpServer>
class Server: public QTcpServer
{
Q_OBJECT;
private:
const QHostAddress address = QHostAddress::Any;
bool waitFlag = true;
QTcpSocket* client;
QString code;
public:
Server();
void start(int port);
void next();
void read();
const QString& getCode();
signals:
void readDone();
};
#endif // SERVER_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/Mars160/MicroToDo.git
git@gitee.com:Mars160/MicroToDo.git
Mars160
MicroToDo
MicroToDo
main

搜索帮助