summaryrefslogtreecommitdiffstats
path: root/resource/listener.h
diff options
context:
space:
mode:
Diffstat (limited to 'resource/listener.h')
-rw-r--r--resource/listener.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/resource/listener.h b/resource/listener.h
index 2fbd75c..1d41467 100644
--- a/resource/listener.h
+++ b/resource/listener.h
@@ -8,14 +8,16 @@
8class Client 8class Client
9{ 9{
10public: 10public:
11 Client(QLocalSocket *s) 11 Client(const QString &n, QLocalSocket *s)
12 : m_socket(s), 12 : name(n),
13 m_commanded(false) 13 socket(s),
14 hasSentCommand(false)
14 { 15 {
15 } 16 }
16 17
17 QLocalSocket *m_socket; 18 QString name;
18 bool m_commanded; 19 QLocalSocket *socket;
20 bool hasSentCommand;
19}; 21};
20 22
21class Listener : public QObject 23class Listener : public QObject