You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pEpMacOSAdapter/pEpMacOSAdapter/pEpMacOSAdapter.h

19 lines
606 B
C

3 years ago
//
// pEpMacOSAdapter.h
// pEpMacOSAdapter
//
// Created by Volker Birk on 20.04.20.
// Copyleft © 2020 p≡p foundation.
// This file is under GNU General Public License 3.0
//
#import <Foundation/Foundation.h>
#import "PEPMacOSAdapterProtocol.h"
3 years ago
3 years ago
/// 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 pEpMacOSAdapter : NSObject <PEPMacOSAdapterProtocol>
3 years ago
@property (retain) NSXPCConnection* clientConnection;
3 years ago
@end