diff options
| author | Manuel Schneider | 2014-05-26 21:48:36 +0200 |
|---|---|---|
| committer | Manuel Schneider | 2014-05-26 21:48:36 +0200 |
| commit | aa5c44814f34d1c255ba6be3828d465e64f9cf2f (patch) | |
| tree | 7e1f70e5ae98062d371a79f591b7c3ed2507746a /src/server/mainwindow/mainwindow.h | |
| parent | Refactor unicast to multicast (diff) | |
| download | pvs2-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.h | 10 |
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; |
