1//
2//  ToolsViewController.h
3//  Keychain
4//
5//  Created by john on 10/22/12.
6//
7//
8
9#import <UIKit/UIKit.h>
10#import <PeerListCell.h>
11
12@interface ToolsViewController : UIViewController  {
13    int     notificationToken;
14    int     notificationCount;
15}
16@property (weak, nonatomic) IBOutlet UIButton *autopopulateButton;
17@property (weak, nonatomic) IBOutlet UIButton *clearButton;
18@property (weak, nonatomic) IBOutlet UIButton *clearKVS;
19@property (weak, nonatomic) IBOutlet UIButton *buttonC;
20@property (weak, nonatomic) IBOutlet UILabel *kvsCleared;
21@property (weak, nonatomic) IBOutlet UILabel *statusMessage;
22
23- (void)setStatus:(NSString *)message;
24
25@end
26