X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircchannel.h;h=3ae7a2144df29397fdd6b812746af462d8781e11;hp=16c96ebd95effa7b26dc92cd3d6139ce28410730;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d diff --git a/src/core/coreircchannel.h b/src/core/coreircchannel.h index 16c96ebd..3ae7a214 100644 --- a/src/core/coreircchannel.h +++ b/src/core/coreircchannel.h @@ -27,30 +27,32 @@ # include "cipher.h" #endif -class CoreIrcChannel : public IrcChannel { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIrcChannel : public IrcChannel +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreIrcChannel(const QString &channelname, Network *network); - virtual ~CoreIrcChannel(); + 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); + 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; + mutable Cipher *_cipher; #endif }; + #endif //COREIRCCHANNEL_H