X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=5acb930a0029b5b968e13beafc1c1c0f9a0e9233;hp=751e86f654255fff985d46711f142c38dfcbe15e;hb=8f2ee00f4edef1693628d3af0bdee84d725eb754;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index 751e86f6..5acb930a 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-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,8 +18,7 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCUSER_H_ -#define COREIRCUSER_H_ +#pragma once #include "ircuser.h" @@ -29,18 +28,14 @@ class CoreIrcUser : public IrcUser { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: CoreIrcUser(const QString &hostmask, Network *network); - virtual ~CoreIrcUser(); - - inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } + ~CoreIrcUser() override; #ifdef HAVE_QCA2 Cipher *cipher() const; - void setEncrypted(bool); #endif #ifdef HAVE_QCA2 @@ -48,6 +43,3 @@ private: mutable Cipher *_cipher; #endif }; - - -#endif