| #pragma once |
| |
| #ifndef TIPC_SERVER_PRIVATE_H |
| #define TIPC_SERVER_PRIVATE_H |
| |
| #include <QObject> |
| #include <QLocalSocket> |
| |
| namespace tipc { |
| |
| |
| |
| |
| |
| class Server; |
| |
| |
| |
| class SocketController final : public QObject { |
| Q_OBJECT |
| |
| public: |
| Server *m_server; |
| QLocalSocket *m_socket; |
| |
| public Q_SLOTS: |
| |
| void onReadyRead(); |
| void onDisconnected(); |
| }; |
| |
| } |
| |
| #endif |