X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fnetworkinfo.h;h=093cb43c1be0013503bd91a6d2134e778493f342;hp=1f712fbb86d9d7bdaf75e4a9edb8ffef39cd613c;hb=c6df551bf5d6b2f33daa5235d320239fcca37688;hpb=0d4a48e61b990d0e909296489f7dc9ef8bf4ad07 diff --git a/src/common/networkinfo.h b/src/common/networkinfo.h index 1f712fbb..093cb43c 100644 --- a/src/common/networkinfo.h +++ b/src/common/networkinfo.h @@ -75,11 +75,16 @@ public: QString support(const QString ¶m) const; IrcUser *newIrcUser(const QString &hostmask); + IrcUser *newIrcUser(const QByteArray &hostmask); IrcUser *ircUser(QString nickname) const; + IrcUser *ircUser(const QByteArray &nickname) const; QList ircUsers() const; IrcChannel *newIrcChannel(const QString &channelname); + IrcChannel *newIrcChannel(const QByteArray &channelname); IrcChannel *ircChannel(QString channelname); + IrcChannel *ircChannel(const QByteArray &channelname); + QList ircChannels() const; QTextCodec *codecForEncoding() const;