]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/protocol.h
Remote server PRIVMSG/NOTICE to nickname support
[user/henk/code/inspircd.git] / include / protocol.h
index 6f9cf8022eba3664e7a0fec5e9d4fdeca608c019..9ceb438a1bff27c2eae2c9cd0cb60a6413bead02 100644 (file)
@@ -58,6 +58,10 @@ class ProtocolInterface : public Extensible
        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