iOS web browser with a focus on security and privacy
1/*
2 * Endless
3 * Copyright (c) 2015 joshua stein <jcs@jcs.org>
4 *
5 * See LICENSE file for redistribution terms.
6 */
7
8#import <UIKit/UIKit.h>
9
10@interface SearchResultsController : UITableViewController <UIGestureRecognizerDelegate>
11
12- (void)updateSearchResultsForQuery:(NSString *)query;
13
14@end