Reformat ALL the source!
[quassel.git] / src / core / coreirclisthelper.h
index 688344a..2660c28 100644 (file)
 
 class QTimerEvent;
 
-class CoreIrcListHelper : public IrcListHelper {
-  SYNCABLE_OBJECT
-  Q_OBJECT
+class CoreIrcListHelper : public IrcListHelper
+{
+    SYNCABLE_OBJECT
+        Q_OBJECT
 
 public:
-  inline CoreIrcListHelper(CoreSession *coreSession) : IrcListHelper(coreSession), _coreSession(coreSession) {};
+    inline CoreIrcListHelper(CoreSession *coreSession) : IrcListHelper(coreSession), _coreSession(coreSession) {};
 
-  inline virtual const QMetaObject *syncMetaObject() const { return &IrcListHelper::staticMetaObject; }
+    inline virtual const QMetaObject *syncMetaObject() const { return &IrcListHelper::staticMetaObject; }
 
-  inline CoreSession *coreSession() const { return _coreSession; }
+    inline CoreSession *coreSession() const { return _coreSession; }
 
-  inline bool requestInProgress(const NetworkId &netId) const { return _channelLists.contains(netId); }
+    inline bool requestInProgress(const NetworkId &netId) const { return _channelLists.contains(netId); }
 
 public slots:
-  virtual QVariantList requestChannelList(const NetworkId &netId, const QStringList &channelFilters);
-  bool addChannel(const NetworkId &netId, const QString &channelName, quint32 userCount, const QString &topic);
-  bool endOfChannelList(const NetworkId &netId);
+    virtual QVariantList requestChannelList(const NetworkId &netId, const QStringList &channelFilters);
+    bool addChannel(const NetworkId &netId, const QString &channelName, quint32 userCount, const QString &topic);
+    bool endOfChannelList(const NetworkId &netId);
 
 protected:
-  void timerEvent(QTimerEvent *event);
+    void timerEvent(QTimerEvent *event);
 
 private:
-  bool dispatchQuery(const NetworkId &netId, const QString &query);
+    bool dispatchQuery(const NetworkId &netId, const QString &query);
 
 private:
-  CoreSession *_coreSession;
+    CoreSession *_coreSession;
 
-  QHash<NetworkId, QString> _queuedQuery;
-  QHash<NetworkId, QList<ChannelDescription> > _channelLists;
-  QHash<NetworkId, QVariantList> _finishedChannelLists;
-  QHash<int, NetworkId> _queryTimeout;
+    QHash<NetworkId, QString> _queuedQuery;
+    QHash<NetworkId, QList<ChannelDescription> > _channelLists;
+    QHash<NetworkId, QVariantList> _finishedChannelLists;
+    QHash<int, NetworkId> _queryTimeout;
 };
 
+
 #endif //COREIRCLISTHELPER_H