1//
2//  KCATableViewController.h
3//  Security
4//
5//  Created by John Hurley on 10/22/12.
6//
7//
8
9#import <UIKit/UIKit.h>
10
11@class KeychainItemCell;
12
13@interface KCATableViewController : UITableViewController
14{
15    int notificationToken;
16    bool hasUnlockedRecently;
17}
18//@property (assign, nonatomic) IBOutlet KeychainItemCell *kcitemCell;
19@property (strong, nonatomic) NSArray *kcItemStatuses;
20@property (strong, nonatomic) NSArray *kcItemNames;
21@property (strong, nonatomic) NSTimer *lockTimer;
22@property (strong, nonatomic) NSTimer *recentTimer;
23
24- (NSArray *)getItems;
25
26@end
27