mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-09-17 05:55:01 +00:00
15 lines
480 B
Objective-C
15 lines
480 B
Objective-C
//
|
|
// MyService.h
|
|
// MyService
|
|
//
|
|
// Created by Evgeny on 01/06/2022.
|
|
// Copyright © 2022 SimpleX Chat. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "MyServiceProtocol.h"
|
|
|
|
// This object implements the protocol which we have defined. It provides the actual behavior for the service. It is 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection.
|
|
@interface MyService : NSObject <MyServiceProtocol>
|
|
@end
|