Add documentation to isStatusMsg
authorShane Synan <digitalcircuit36939@gmail.com>
Wed, 30 Mar 2016 23:50:46 +0000 (18:50 -0500)
committerDaniel Albers <daniel@lbe.rs>
Fri, 1 Apr 2016 01:49:25 +0000 (03:49 +0200)
src/common/network.h

index c6f8f67..e425701 100644 (file)
@@ -131,6 +131,17 @@ public :
     inline bool isMe(IrcUser *ircuser) const { return (ircuser->nick().toLower() == myNick().toLower()); }
 
     bool isChannelName(const QString &channelname) const;
+
+    /**
+     * Checks if the target counts as a STATUSMSG
+     *
+     * Status messages are prefixed with one or more characters from the server-provided STATUSMSG
+     * if available, otherwise "@" and "+" are assumed.  Generally, status messages sent to a
+     * channel are only visible to those with the same or higher permissions, e.g. voiced.
+     *
+     * @param[in] target Name of destination, e.g. a channel or query
+     * @returns True if a STATUSMSG, otherwise false
+     */
     bool isStatusMsg(const QString &target) const;
 
     inline bool isConnected() const { return _connected; }