X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=450fd58c0cf9d7c2547c8b58f693b7e47d21735e;hp=5995165adb11191da315a418ea368a88b7fcce57;hb=6f0a153a674317d77233139fc50a2985af86e36e;hpb=e1801627e8e13e7eacbf0c59622a6adf20fcd4cd diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 5995165a..450fd58c 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-2010 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,20 +23,34 @@ #include "ircchannel.h" +#ifdef HAVE_QCA2 +# include "cipher.h" +#endif + class CoreIrcChannel : public IrcChannel { SYNCABLE_OBJECT Q_OBJECT public: CoreIrcChannel(const QString &channelname, Network *network); + virtual ~CoreIrcChannel(); 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; } private: bool _receivedWelcomeMsg; + +#ifdef HAVE_QCA2 + mutable Cipher *_cipher; +#endif }; #endif //COREIRCCHANNEL_H