X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=2d24101e9aeee6ee83bad7ef006839e2d3997a09;hp=b26fed068e15028c8af6a9f1a830ad5d4c6dc78f;hb=ddfb1d2574c4bffd180361a80df9b1cd584bb040;hpb=6f0a153a674317d77233139fc50a2985af86e36e diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index b26fed06..2d24101e 100644 --- a/src/core/coreircuser.h +++ b/src/core/coreircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2010 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 * @@ -15,7 +15,7 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef COREIRCUSER_H_ @@ -27,25 +27,26 @@ # include "cipher.h" #endif -class CoreIrcUser : public IrcUser { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIrcUser : public IrcUser +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreIrcUser(const QString &hostmask, Network *network); - virtual ~CoreIrcUser(); + CoreIrcUser(const QString &hostmask, Network *network); + virtual ~CoreIrcUser(); - inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } + inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } #ifdef HAVE_QCA2 - Cipher *cipher() const; - void setEncrypted(bool); + Cipher *cipher() const; #endif #ifdef HAVE_QCA2 private: - mutable Cipher *_cipher; + mutable Cipher *_cipher; #endif }; + #endif