summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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