]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/protocol.h
Eventlist one item too short, makes this module not publish its 005 feature
[user/henk/code/inspircd.git] / include / protocol.h
index 44964e1e82e8e4f9ccc7c3a798e9df59a22b0cde..16e347ad2481e818c08bce8fcfb5e46826b22d12 100644 (file)
@@ -47,13 +47,19 @@ class ProtocolInterface : public Extensible
                SendMode(target, n);
        }
 
-       virtual void SendOperNotice(const std::string &text) { }
-
        virtual void SendModeNotice(const std::string &modes, const std::string &text) { }
 
        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) { }
+
+       virtual void SendUserPrivmsg(User* target, const std::string &text) { }
+
+       virtual void SendUserNotice(User* target, const std::string &text) { }
 };
 
 #endif