mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-18 09:59:32 +00:00
23 lines
469 B
Objective-C
23 lines
469 B
Objective-C
//
|
|
// MPPluginManager.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 16/07/15.
|
|
// Copyright (c) 2015 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class KPKNode;
|
|
|
|
@interface MPPluginManager : NSObject
|
|
|
|
typedef BOOL (^NodeMatchBlock)(KPKNode *aNode);
|
|
|
|
+ (instancetype)sharedManager;
|
|
|
|
- (NSArray *)filteredEntriesUsingBlock:(NodeMatchBlock) matchBlock;
|
|
- (NSArray *)filteredGroupsUsingBlock:(NodeMatchBlock) matchBlock;
|
|
|
|
@end
|