X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fcoreaccount.h;h=d8acb4284510528d084f527ce13a531bb0e45bef;hp=e60e0e69882b4946ce20fbf4192f3f3f9038583f;hb=1a45f16a9734820fba42fe1db3f38dd1eee49df6;hpb=ffa9c1a119c458b8bef2dfa226ce6222b845e56f diff --git a/src/client/coreaccount.h b/src/client/coreaccount.h index e60e0e69..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; @@ -92,5 +94,6 @@ private: uint _proxyPort; }; +QDebug operator<<(QDebug dbg, const CoreAccount &msg); #endif