tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / sd / source / ui / remotecontrol / OSXNetworkService.h
blob7298d901bd5f09ee109a01530bd04425f71ace1d
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 #include <sys/socket.h>
13 #include <netinet/in.h>
15 #include <premac.h>
16 #import <CoreFoundation/CoreFoundation.h>
17 #import <Foundation/NSNetServices.h>
18 #import <Foundation/NSRunLoop.h>
19 #include <postmac.h>
21 @interface OSXBonjourService : NSObject <NSNetServiceDelegate>
23 NSNetService* netService;
26 - (void)publishImpressRemoteServiceOnLocalNetworkWithName:(NSString*)sName;
28 @end
30 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */