Files
MacPass/MacPass/MPPluginHost.h
2015-11-20 12:59:20 +01:00

24 lines
494 B
Objective-C

//
// MPPluginHost.h
// MacPass
//
// Created by Michael Starke on 13/11/15.
// Copyright © 2015 HicknHack Software GmbH. All rights reserved.
//
#import <Foundation/Foundation.h>
@class KPKNode;
typedef BOOL (^NodeMatchBlock)(KPKNode *aNode);
@interface MPPluginHost : NSObject
+ (instancetype)sharedHost;
- (instancetype)init NS_UNAVAILABLE;
- (NSArray *)filteredEntriesUsingBlock:(NodeMatchBlock)matchBlock;
- (NSArray *)filteredGroupsUsingBlock:(NodeMatchBlock)matchBlock;
@end