1 //
2 //  KBSearcher.h
3 //  Keybase
4 //
5 //  Created by Gabriel on 4/8/15.
6 //  Copyright (c) 2015 Gabriel Handford. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 #import "KBRPC.h"
12 #import "KBSearchResults.h"
13 #import <Tikppa/Tikppa.h>
14 
15 @interface KBSearcher : NSObject
16 
17 - (void)search:(NSString *)query client:(KBRPClient *)client remote:(BOOL)remote completion:(void (^)(NSError *error, KBSearchResults *searchResults))completion;
18 
19 - (void)reloadDelay:(KBTableView *)tableView;
20 
21 @end
22