summaryrefslogtreecommitdiff
path: root/src/net/chathandler.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/chathandler.h')
-rw-r--r--src/net/chathandler.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/net/chathandler.h b/src/net/chathandler.h
index cb1371b4..c324c2d8 100644
--- a/src/net/chathandler.h
+++ b/src/net/chathandler.h
@@ -22,13 +22,14 @@
#ifndef CHATHANDLER_H
#define CHATHANDLER_H
-#include <iosfwd>
+#include <string>
namespace Net {
+
class ChatHandler
{
public:
- virtual ~ChatHandler() {}
+ virtual ~ChatHandler() = default;
virtual void talk(const std::string &text) = 0;
@@ -55,6 +56,8 @@ class ChatHandler
virtual void kickUser(int channelId, const std::string &name) = 0;
virtual void who() = 0;
+
+ virtual bool whoSupported() const = 0;
};
}