Implement chat bot mute on server side (#1).

This commit is contained in:
lotodore
2012-01-08 13:02:29 +00:00
parent c3dc99620e
commit 03a1a1dc55
13 changed files with 108 additions and 28 deletions
+3
View File
@@ -137,6 +137,8 @@ public:
bool isSessionActive() const;
void setIsKicked(bool kicked);
bool isKicked() const;
void setIsMuted(bool muted);
bool isMuted() const;
bool checkIfINeedToShowCards();
@@ -190,6 +192,7 @@ private:
bool m_isSessionActive;
bool m_isKicked;
bool m_isMuted;
};
#endif