Implement sender prefix storage in the database
[quassel.git] / src / core / sessionthread.h
index 34c8ed6..0307ad2 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-09 by the Quassel Project                          *
+ *   Copyright (C) 2005-2016 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #ifndef SESSIONTHREAD_H
@@ -27,8 +27,9 @@
 #include "types.h"
 
 class CoreSession;
+class InternalPeer;
+class RemotePeer;
 class QIODevice;
-class SignalProxy;
 
 class SessionThread : public QThread
 {
@@ -53,8 +54,8 @@ signals:
     void initialized();
     void shutdown();
 
-    void addRemoteClient(QIODevice *);
-    void addInternalClient(SignalProxy *);
+    void addRemoteClient(RemotePeer *peer);
+    void addInternalClient(InternalPeer *peer);
 
 private:
     CoreSession *_session;
@@ -65,8 +66,8 @@ private:
 
     bool isSessionInitialized();
     void addClientToSession(QObject *peer);
-    void addRemoteClientToSession(QIODevice *socket);
-    void addInternalClientToSession(SignalProxy *proxy);
+    void addRemoteClientToSession(RemotePeer *remotePeer);
+    void addInternalClientToSession(InternalPeer *internalPeer);
 };