summaryrefslogtreecommitdiff
path: root/desktop/source/app/officeipcthread.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-01 14:22:44 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-04 17:35:32 +0200
commitec655c8e8f6ff476fb70135927ce38d1b1000982 (patch)
tree4c4257f805ed045271bd56121656a5ee72fc97b0 /desktop/source/app/officeipcthread.hxx
parent890e13344ba83ef9f06bb5a8cde0f068ecb3c7a6 (diff)
Prepare for using other IPC mechanisms besides an osl::Pipe
Change-Id: Ie34330508563bef25185216bdc1dc3ae84d084d4
Diffstat (limited to 'desktop/source/app/officeipcthread.hxx')
-rw-r--r--desktop/source/app/officeipcthread.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/desktop/source/app/officeipcthread.hxx b/desktop/source/app/officeipcthread.hxx
index 7b154d562e6e..55e5fc383e25 100644
--- a/desktop/source/app/officeipcthread.hxx
+++ b/desktop/source/app/officeipcthread.hxx
@@ -67,11 +67,12 @@ struct ProcessDocumentsRequest
};
class DispatchWatcher;
-class PipeReaderThread;
+class IpcThread;
+class PipeIpcThread;
class RequestHandler: public salhelper::SimpleReferenceObject
{
- friend PipeReaderThread;
+ friend PipeIpcThread;
private:
static rtl::Reference< RequestHandler > pGlobal;
@@ -81,7 +82,7 @@ class RequestHandler: public salhelper::SimpleReferenceObject
State mState;
int mnPendingRequests;
rtl::Reference<DispatchWatcher> mpDispatchWatcher;
- rtl::Reference<PipeReaderThread> mPipeReaderThread;
+ rtl::Reference<IpcThread> mIpcThread;
/* condition to be set when the request has been processed */
::osl::Condition cProcessed;