diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 14:37:23 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-04-04 14:37:23 +0000 |
commit | 001861f5d2aca21531b0a20a46e44654a45a5522 (patch) | |
tree | c65b5bde81dd2af13d873ca2d7a993348ec997b5 /include/protocol.h | |
parent | 463979eb86f2f626a0a6c7b0b9742a86b35c7faa (diff) |
Add protocol api functions: PI->WriteChannelPrivmsg() and PI->WriteChannelNotice() - sends with SID origin over network
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9308 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/protocol.h')
-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 |