pEp macOS Desktop adapter
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//
|
|
// PEPXPCApiClientService.h
|
|
// PEPObjCAdapterXpcApiClient
|
|
//
|
|
// Created by David Alarcon on 13/1/21.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "PEPMacOSAdapterProtocol.h"
|
|
|
|
@class PEPIdentity;
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PEPObjCAdapterXPCApiClientService : NSObject <PEPMacOSAdapterProtocol>
|
|
|
|
+ (instancetype)shared;
|
|
- (void)start;
|
|
- (void)stop;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|