1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

32 lines
637 B
C
Raw Normal View History

2018-04-22 13:03:28 +08:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
2018-04-22 23:00:42 +08:00
#include "qqtserverprotocolmanager.h"
2018-04-23 20:25:18 +08:00
#include "qqtserver2protocolmanager.h"
2018-04-22 13:03:28 +08:00
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
2018-04-22 23:00:42 +08:00
explicit MainWindow ( QWidget* parent = 0 );
2018-04-22 13:03:28 +08:00
~MainWindow();
2018-04-22 23:00:42 +08:00
private slots:
//我接收一个信息,处理一下。
//这个信息我关注它。
void recvANotify ( const QQtProtocol* protocol,
const QQtMessage* message );
2018-04-22 13:03:28 +08:00
private:
2018-04-22 23:00:42 +08:00
Ui::MainWindow* ui;
2018-04-29 12:36:11 +08:00
QQtServerProtocolManager* pm0;
2018-04-22 13:03:28 +08:00
};
#endif // MAINWINDOW_H