X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=d5fc37702bec56e2894e840afb68bcc819169303;hp=ba41947c231816e86b380bd78f728a7d99fb357a;hb=921e54680da16fcf2adb7a90506875aceb6633a4;hpb=5aab75a546d5463195cac9cdb15c94979bf73925 diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index ba41947c..d5fc3770 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel Project * + * Copyright (C) 2005-2015 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 COREIRCCHANNEL_H @@ -23,19 +23,36 @@ #include "ircchannel.h" -class CoreIrcChannel : public IrcChannel { - Q_OBJECT +#ifdef HAVE_QCA2 +# include "cipher.h" +#endif + +class CoreIrcChannel : public IrcChannel +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreIrcChannel(const QString &channelname, Network *network); + CoreIrcChannel(const QString &channelname, Network *network); + virtual ~CoreIrcChannel(); + + inline virtual const QMetaObject *syncMetaObject() const { return &IrcChannel::staticMetaObject; } - 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; + +#ifdef HAVE_QCA2 + mutable Cipher *_cipher; +#endif }; + #endif //COREIRCCHANNEL_H