2019-08-11 09:07:20 +02:00
|
|
|
/* This file is part of the HandBrake source code.
|
|
|
|
Homepage: <http://handbrake.fr/>.
|
|
|
|
It may be used under the terms of the GNU General Public License. */
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "HBRemoteCoreProtocol.h"
|
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2019-08-11 09:07:20 +02:00
|
|
|
@interface HandBrakeXPCService : NSObject <HBRemoteCoreProtocol>
|
|
|
|
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithConnection:(NSXPCConnection *)connection;
|
|
|
|
|
|
|
|
@end
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|