From a4e82d8ab81c6cc0115dc521100a4f574a6d62e8 Mon Sep 17 00:00:00 2001 From: michael starke Date: Tue, 1 Dec 2015 19:10:30 +0100 Subject: [PATCH] Added type information Signed-off-by: michael starke --- MacPass/MPPluginHost.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/MacPass/MPPluginHost.h b/MacPass/MPPluginHost.h index 36d99d33..180cab5b 100644 --- a/MacPass/MPPluginHost.h +++ b/MacPass/MPPluginHost.h @@ -8,6 +8,8 @@ #import @class KPKNode; +@class KPKEntry; +@class KPKGroup; typedef BOOL (^NodeMatchBlock)(KPKNode *aNode); @@ -17,7 +19,7 @@ typedef BOOL (^NodeMatchBlock)(KPKNode *aNode); - (instancetype)init NS_UNAVAILABLE; -- (NSArray *)filteredEntriesUsingBlock:(NodeMatchBlock)matchBlock; -- (NSArray *)filteredGroupsUsingBlock:(NodeMatchBlock)matchBlock; +- (NSArray *)filteredEntriesUsingBlock:(NodeMatchBlock)matchBlock; +- (NSArray *)filteredGroupsUsingBlock:(NodeMatchBlock)matchBlock; @end