X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fprotocol.h;h=16e347ad2481e818c08bce8fcfb5e46826b22d12;hb=8ac2fa846b189fa649ef8591bc4e311ab613f283;hp=44964e1e82e8e4f9ccc7c3a798e9df59a22b0cde;hpb=3f971b447fae258a92f2cc6645497cce93f1c04e;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/protocol.h b/include/protocol.h index 44964e1e8..16e347ad2 100644 --- a/include/protocol.h +++ b/include/protocol.h @@ -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