1//
2//  AuthorityTableView.h
3//  security_systemkeychain
4//
5//  Created by Love Hörnquist Åstrand on 2012-03-22.
6//  Copyright (c) 2012 __MyCompanyName__. All rights reserved.
7//
8
9#import <Cocoa/Cocoa.h>
10
11@protocol AuthorityTableDelegate <NSObject>
12
13- (void)deleteAuthority:(NSTableView *)tableView atIndexes:(NSIndexSet *)indexes;
14
15@end
16
17@interface AuthorityTableView : NSTableView
18
19@property (assign) IBOutlet id<AuthorityTableDelegate> authorityDelegate;
20
21@end
22