X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreircuser.h;h=47b8911df82985ed144788db86fc70db871c0445;hp=f8430e3a2321b0774a68ce37446fddb9c74a93fe;hb=694f9bfbf7f1af19108461c7e00d133e55082bce;hpb=61c8d84d1c849373e0f115dc748ed45cff95287d diff --git a/src/core/coreircuser.h b/src/core/coreircuser.h index f8430e3a..47b8911d 100644 --- a/src/core/coreircuser.h +++ b/src/core/coreircuser.h @@ -27,25 +27,27 @@ # include "cipher.h" #endif -class CoreIrcUser : public IrcUser { - SYNCABLE_OBJECT - Q_OBJECT +class CoreIrcUser : public IrcUser +{ + SYNCABLE_OBJECT + Q_OBJECT public: - CoreIrcUser(const QString &hostmask, Network *network); - virtual ~CoreIrcUser(); + CoreIrcUser(const QString &hostmask, Network *network); + virtual ~CoreIrcUser(); - inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } + inline virtual const QMetaObject *syncMetaObject() const { return &IrcUser::staticMetaObject; } #ifdef HAVE_QCA2 - Cipher *cipher() const; - void setEncrypted(bool); + Cipher *cipher() const; + void setEncrypted(bool); #endif #ifdef HAVE_QCA2 private: - mutable Cipher *_cipher; + mutable Cipher *_cipher; #endif }; + #endif