X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fclient%2Fcoreaccount.h;h=d8acb4284510528d084f527ce13a531bb0e45bef;hb=48dda5f3e963e13e36300ddaef262660bf169672;hp=8913b2e4c110dfa0a8e87072266f82679df89b47;hpb=9ddb5712b16b3219338871d346765bc649007de0;p=quassel.git diff --git a/src/client/coreaccount.h b/src/client/coreaccount.h index 8913b2e4..d8acb428 100644 --- a/src/client/coreaccount.h +++ b/src/client/coreaccount.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,6 +22,7 @@ #define COREACCOUNT_H_ #include +#include #include #include #include @@ -78,6 +79,7 @@ public: virtual void fromVariantMap(const QVariantMap &); bool operator==(const CoreAccount &other) const; + bool operator!=(const CoreAccount &other) const; private: AccountId _accountId; @@ -86,11 +88,12 @@ private: bool _internal; QString _user, _password, _hostName; uint _port; - bool _storePassword, _useSsl, _useProxy; + bool _storePassword, _useSsl; QNetworkProxy::ProxyType _proxyType; QString _proxyUser, _proxyPassword, _proxyHostName; uint _proxyPort; }; +QDebug operator<<(QDebug dbg, const CoreAccount &msg); #endif