X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=3bddef781e907fe7e0b260ea3822748f5d0398aa;hp=f8430e3a2321b0774a68ce37446fddb9c74a93fe;hb=1f21c1f9613031ae263eeed0c4883bfcd5488343;hpb=fdfd62334f728bd05470c5191194d55027fec86e diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index f8430e3a..3bddef78 100644 --- a/src/core/coreircuser.h +++ b/src/core/coreircuser.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,37 +15,31 @@ * 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_ -#define COREIRCUSER_H_ +#pragma once #include "ircuser.h" #ifdef HAVE_QCA2 -# include "cipher.h" +# include "cipher.h" #endif -class CoreIrcUser : public IrcUser { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIrcUser : public IrcUser +{ + Q_OBJECT public: - CoreIrcUser(const QString &hostmask, Network *network); - virtual ~CoreIrcUser(); - - inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } + CoreIrcUser(const QString& hostmask, Network* network); + ~CoreIrcUser() override; #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