summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircmessage.h
authorskyhusker <skyhusker>2005-01-23 23:02:00 (UTC)
committer skyhusker <skyhusker>2005-01-23 23:02:00 (UTC)
commit42df856b4e4741cf5ebdd267cf370e5a9eaf3dbc (patch) (side-by-side diff)
tree6536ec388af2314ecfaecdeb923b4c2e76b0de29 /noncore/net/opieirc/ircmessage.h
parent2074382fccea58a55b68c51815abc5df463473aa (diff)
downloadopie-42df856b4e4741cf5ebdd267cf370e5a9eaf3dbc.zip
opie-42df856b4e4741cf5ebdd267cf370e5a9eaf3dbc.tar.gz
opie-42df856b4e4741cf5ebdd267cf370e5a9eaf3dbc.tar.bz2
Added distinction between CTCP requests and CTCP replies
Diffstat (limited to 'noncore/net/opieirc/ircmessage.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieirc/ircmessage.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircmessage.h b/noncore/net/opieirc/ircmessage.h
index 10ba450..40bb210 100644
--- a/noncore/net/opieirc/ircmessage.h
+++ b/noncore/net/opieirc/ircmessage.h
@@ -37,8 +37,10 @@ public:
/* Check if this IRCMessage's command is literal or numerical */
bool isNumerical();
/* CHeck if this IRCMessage is a CTCP message */
bool isCTCP();
+ bool isCTCPRequest();
+ bool isCTCPReply();
/* Return the IRC command (literal commands) */
QString command();
/* Return the CTCP command */
QString ctcpCommand();
@@ -64,7 +66,8 @@ protected:
QString m_trailing;
QStringList m_parameters;
bool m_isNumerical;
bool m_ctcp;
+ bool m_ctcpRequest;
};
#endif