Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
ResponseListenerThread.h
1#ifndef WIZARD_CLIENT_NETWORK_THREAD_H
2#define WIZARD_CLIENT_NETWORK_THREAD_H
3
4#include <functional>
5#include <wx/wx.h>
6#include "sockpp/tcp_socket.h"
7#include "sockpp/tcp_connector.h"
8
9
10class ResponseListenerThread : public wxThread {
11
12public:
13 ResponseListenerThread(sockpp::tcp_connector* connection);
15
16protected:
17 virtual ExitCode Entry();
18
19private:
20 void outputError(std::string title, std::string message);
21
22
23 sockpp::tcp_connector* _connection;
24
25};
26
27#endif //WIZARD_CLIENT_NETWORK_THREAD_H
Definition ResponseListenerThread.h:10