summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 44964e1e8..6f9cf8022 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -54,6 +54,10 @@ class ProtocolInterface : public Extensible
virtual void SendSNONotice(const std::string &snomask, const std::string &text) { }
virtual void PushToClient(User* target, const std::string &rawline) { }
+
+ virtual void SendChannelPrivmsg(Channel* target, char status, const std::string &text) { }
+
+ virtual void SendChannelNotice(Channel* target, char status, const std::string &text) { }
};
#endif