diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/protocol.h | 4 |
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 |