summaryrefslogtreecommitdiff
path: root/include/protocol.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-04 15:06:32 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-04-04 15:06:32 +0000
commit89fc6ca9c66198fe54cce19d59279cd454fc1bd0 (patch)
tree5c0a6874cb3041a8efb0f8dda3d0089ba5c31944 /include/protocol.h
parentce4dc653ce9acbb9b278b355e3b2f88998b26ac9 (diff)
Remote server PRIVMSG/NOTICE to nickname support
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9314 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/protocol.h')
-rw-r--r--include/protocol.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 6f9cf8022..9ceb438a1 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -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