summaryrefslogtreecommitdiff
path: root/noncore/net/opieirc/ircperson.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opieirc/ircperson.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieirc/ircperson.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/noncore/net/opieirc/ircperson.h b/noncore/net/opieirc/ircperson.h
index 850f91b..38732c4 100644
--- a/noncore/net/opieirc/ircperson.h
+++ b/noncore/net/opieirc/ircperson.h
@@ -22,25 +22,28 @@
#define __IRCPERSON
#include <qstring.h>
/* This class requires all required information relating to a person
on the IRC network. This class can be used as an input mask for
IRCMessage-prefixes too
*/
class IRCPerson {
public:
IRCPerson();
+ /* Create an IRCPerson from an IRC style description (nick!user@host) */
IRCPerson(QString mask);
+ /* Copy constructor */
+ IRCPerson(const IRCPerson &person);
void fromMask(QString mask);
void setNick(QString name);
void setUser(QString user);
void setHost(QString host);
QString toMask();
QString nick();
QString user();
QString host();
protected:
QString m_nick;
QString m_user;