summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/protocol.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/protocol.h b/include/protocol.h
index 4d87f8a2c..b6568e313 100644
--- a/include/protocol.h
+++ b/include/protocol.h
@@ -64,11 +64,16 @@ class ProtocolInterface : public Extensible
*/
virtual void SendTopic(Channel* channel, std::string &topic) { }
+ /** Send mode changes for an object.
+ * @param target The channel name or user to send mode changes for.
+ * @param The mode changes to send.
+ */
virtual void SendMode(const std::string &target, parameterlist &modedata) { }
+ /** Convenience function, string wrapper around the above.
+ */
virtual void SendModeStr(const std::string &target, const std::string &modeline)
{
- /* Convenience function */
irc::spacesepstream x(modeline);
parameterlist n;
std::string v;