summaryrefslogtreecommitdiffstats
path: root/src/server/mainwindow/mainwindow.h
diff options
context:
space:
mode:
authorManuel Schneider2014-05-26 21:48:36 +0200
committerManuel Schneider2014-05-26 21:48:36 +0200
commitaa5c44814f34d1c255ba6be3828d465e64f9cf2f (patch)
tree7e1f70e5ae98062d371a79f591b7c3ed2507746a /src/server/mainwindow/mainwindow.h
parentRefactor unicast to multicast (diff)
downloadpvs2-aa5c44814f34d1c255ba6be3828d465e64f9cf2f.tar.gz
pvs2-aa5c44814f34d1c255ba6be3828d465e64f9cf2f.tar.xz
pvs2-aa5c44814f34d1c255ba6be3828d465e64f9cf2f.zip
Replace states by two flags indicating the state
Diffstat (limited to 'src/server/mainwindow/mainwindow.h')
-rw-r--r--src/server/mainwindow/mainwindow.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/server/mainwindow/mainwindow.h b/src/server/mainwindow/mainwindow.h
index 7f77ee6..fabc11a 100644
--- a/src/server/mainwindow/mainwindow.h
+++ b/src/server/mainwindow/mainwindow.h
@@ -49,14 +49,8 @@ private:
static const qint64 _buttonBlockTime = 600;
// Internal stuff
- enum class State {
- Idle,
- Unicast,
- ExclusiveUnicast,
- Broadcast
- } _state;
-
-
+ bool _broadcast;
+ bool _lockOthers;
Client * _streamingSource;
QList<ConnectionFrame*> _clientFrames;