tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sd / source / ui / remotecontrol / OSXBluetooth.h
blob64f095f6ca25a46cb3cb7376736ca174f348ea3c
1 /* -*- Mode: ObjC; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #pragma once
12 #import <IOBluetooth/objc/IOBluetoothRFCOMMChannel.h>
14 #include "IBluetoothSocket.hxx"
15 #include "Communicator.hxx"
16 #include "OSXBluetoothWrapper.hxx"
18 @interface ChannelDelegate : NSObject<IOBluetoothRFCOMMChannelDelegate>
20 sd::Communicator* pCommunicator;
21 sd::OSXBluetoothWrapper* pSocket;
24 - (id) initWithCommunicatorAndSocket:(sd::Communicator*)communicator socket:(sd::OSXBluetoothWrapper*)socket;
25 - (void) rfcommChannelData:(IOBluetoothRFCOMMChannel*)rfcommChannel data:(void *)dataPointer length:(size_t)dataLength;
26 - (void) rfcommChannelClosed:(IOBluetoothRFCOMMChannel*)rfcommChannel;
28 @end
30 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */