Reformat ALL the source!
[quassel.git] / src / core / coreircuser.h
index f8430e3..47b8911 100644 (file)
 #  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