X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=7cf2ae3f00e3a3d6e64b104c52e8d96e7013e4a4;hp=61c5ecb56d5dcbac005072b998479193591462b5;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=f824db0e31b54969e0b7fa0b5405b1e9173d482c diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 61c5ecb5..7cf2ae3f 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 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,27 +15,37 @@ * 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 COREIRCCHANNEL_H -#define COREIRCCHANNEL_H +#pragma once #include "ircchannel.h" -class CoreIrcChannel : public IrcChannel { - Q_OBJECT +#ifdef HAVE_QCA2 +# include "cipher.h" +#endif + +class CoreIrcChannel : public IrcChannel +{ + Q_OBJECT public: - CoreIrcChannel(const QString &channelname, Network *network); + CoreIrcChannel(const QString& channelname, Network* network); + ~CoreIrcChannel() override; - inline virtual const QMetaObject *syncMetaObject() const { return &IrcChannel::staticMetaObject; } +#ifdef HAVE_QCA2 + Cipher* cipher() const; + void setEncrypted(bool); +#endif - inline bool receivedWelcomeMsg() const { return _receivedWelcomeMsg; } - inline void setReceivedWelcomeMsg() { _receivedWelcomeMsg = true; } + inline bool receivedWelcomeMsg() const { return _receivedWelcomeMsg; } + inline void setReceivedWelcomeMsg() { _receivedWelcomeMsg = true; } private: - bool _receivedWelcomeMsg; -}; + bool _receivedWelcomeMsg; -#endif //COREIRCCHANNEL_H +#ifdef HAVE_QCA2 + mutable Cipher* _cipher; +#endif +};