4#include <QtCore/qobject.h>
17 void setServerName(
const std::string& _serverName) { m_serverName = _serverName; };
26 void slotDataReceived(
void);
27 void slotProcessMessage(std::string _message);
28 void slotDisconnected(
void);
31 bool writeToServer(
const std::string& _message);
32 void processNextEvent(
void);
34 std::string m_serverName;
35 QLocalSocket* m_serverSocket;
Definition CommunicationHandler.h:11
void setServerName(const std::string &_serverName)
Definition CommunicationHandler.h:17
virtual ~CommunicationHandler()
Definition CommunicationHandler.cpp:22
const std::string & getServerName(void) const
Definition CommunicationHandler.h:18
CommunicationHandler()
Definition CommunicationHandler.cpp:16
bool ensureConnectionToServer(void)
Definition CommunicationHandler.cpp:26