X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=5aabb0c546fc55e776cf42864f58d19313638b7a;hp=0c7a8699f484b19c1978fcad5b2312ba18f4afb4;hb=c0d6dc0dec628f2e143e37ecc95cec45e636f8a5;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 0c7a8699..5aabb0c5 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2020 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -18,28 +18,24 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ -#ifndef COREIRCCHANNEL_H -#define COREIRCCHANNEL_H +#pragma once #include "ircchannel.h" #ifdef HAVE_QCA2 -# include "cipher.h" +# include "cipher.h" #endif class CoreIrcChannel : public IrcChannel { - SYNCABLE_OBJECT - Q_OBJECT + Q_OBJECT public: - CoreIrcChannel(const QString &channelname, Network *network); - virtual ~CoreIrcChannel(); - - inline virtual const QMetaObject *syncMetaObject() const { return &IrcChannel::staticMetaObject; } + CoreIrcChannel(const QString& channelname, Network* network); + ~CoreIrcChannel() override; #ifdef HAVE_QCA2 - Cipher *cipher() const; + Cipher* cipher() const; void setEncrypted(bool); #endif @@ -50,9 +46,6 @@ private: bool _receivedWelcomeMsg; #ifdef HAVE_QCA2 - mutable Cipher *_cipher; + mutable Cipher* _cipher; #endif }; - - -#endif //COREIRCCHANNEL_H