summaryrefslogtreecommitdiff
path: root/sd/source/ui/remotecontrol/BluetoothServer.hxx
diff options
context:
space:
mode:
authorAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-22 12:44:42 +0200
committerAndrzej J.R. Hunt <andrzej@ahunt.org>2012-08-22 20:23:07 +0200
commit1db66c2a1a8ad5a60c68b09ddacc1bb6e021299f (patch)
treef4693b0a0c1a689783c9dbf956a56d8d350afb3a /sd/source/ui/remotecontrol/BluetoothServer.hxx
parent9d73597289be9049e8300ff92980fdffbe4d7040 (diff)
Bluetooth connection working (Linux).
Change-Id: Iac77c3ce0ab0ea7bda3105c58859888e55e64d2d
Diffstat (limited to 'sd/source/ui/remotecontrol/BluetoothServer.hxx')
-rw-r--r--sd/source/ui/remotecontrol/BluetoothServer.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.hxx b/sd/source/ui/remotecontrol/BluetoothServer.hxx
index b95d86202e9a..163208ed1353 100644
--- a/sd/source/ui/remotecontrol/BluetoothServer.hxx
+++ b/sd/source/ui/remotecontrol/BluetoothServer.hxx
@@ -10,16 +10,19 @@
#define _SD_IMPRESSREMOTE_BLUETOOTHSERVER_HXX
#include <salhelper/thread.hxx>
+#include <vector>
namespace sd
{
+ class Communicator;
+
class BluetoothServer:
public salhelper::Thread
{
public:
- static void setup();
+ static void setup( std::vector<Communicator*>* pCommunicators );
private:
- BluetoothServer();
+ BluetoothServer( std::vector<Communicator*>* pCommunicators );
~BluetoothServer();
static BluetoothServer *spServer;
@@ -27,6 +30,7 @@ namespace sd
public:
private:
void execute();
+ std::vector<Communicator*>* mpCommunicators;
};
}