summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/Communicator.hxx
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-10 18:42:49 +0200
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-10 18:43:44 +0200
commitf4ab85cb44664a4c46c52d5a34eee300947e6069 (patch)
tree642112abdc63e9ba0765fd702c492f3241cea34f /sd/source/ui/remotecontrol/Communicator.hxx
parentf6a24ace5ad12e79f0cc90709a290a30e3758781 (diff)
Pairing implemented server side.
Change-Id: I542e563df68d38691f7c95cebf66aeb32071bd66
Diffstat (limited to 'sd/source/ui/remotecontrol/Communicator.hxx')
-rw-r--r--sd/source/ui/remotecontrol/Communicator.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/Communicator.hxx b/sd/source/ui/remotecontrol/Communicator.hxx
index 089fffa7b3dd..d7ad796aa77a 100644
--- a/sd/source/ui/remotecontrol/Communicator.hxx
+++ b/sd/source/ui/remotecontrol/Communicator.hxx
@@ -22,6 +22,8 @@
#include <com/sun/star/presentation/XSlideShowController.hpp>
+#include "BufferedStreamSocket.hxx"
+
#define CHARSET RTL_TEXTENCODING_UTF8
namespace css = ::com::sun::star;
@@ -40,7 +42,7 @@ namespace sd
class Communicator : public salhelper::Thread
{
public:
- Communicator( osl::StreamSocket &aSocket );
+ Communicator( BufferedStreamSocket *pSocket );
~Communicator();
Transmitter* getTransmitter();
@@ -51,7 +53,7 @@ namespace sd
private:
void execute();
- osl::StreamSocket mSocket;
+ BufferedStreamSocket *mpSocket;
Transmitter *pTransmitter;
rtl::Reference<Listener> mListener;