X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fsessionthread.h;h=9639f684abf17576553aa53c6f3182c832d80480;hb=8834ebbb9e03ed09bd3509e5f8634769ff68bb48;hp=75402633f4b832a37b4640815a36c85733c04122;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222;p=quassel.git diff --git a/src/core/sessionthread.h b/src/core/sessionthread.h index 75402633..9639f684 100644 --- a/src/core/sessionthread.h +++ b/src/core/sessionthread.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2013 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -27,8 +27,9 @@ #include "types.h" class CoreSession; +class InternalConnection; +class RemoteConnection; 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(RemoteConnection *); + void addInternalClient(InternalConnection *); private: CoreSession *_session; @@ -65,8 +66,8 @@ private: bool isSessionInitialized(); void addClientToSession(QObject *peer); - void addRemoteClientToSession(QIODevice *socket); - void addInternalClientToSession(SignalProxy *proxy); + void addRemoteClientToSession(RemoteConnection *connection); + void addInternalClientToSession(InternalConnection *client); };