mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 02:29:56 +00:00
14 lines
321 B
Objective-C
14 lines
321 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "NameFormatter.h"
|
|
#import "SizeFormatter.h"
|
|
#import "AttributesFormatter.h"
|
|
|
|
@interface OutlineViewDelegate : NSObject
|
|
{
|
|
IBOutlet NSWindow *window;
|
|
IBOutlet NameFormatter *nameFormatter;
|
|
IBOutlet SizeFormatter *sizeFormatter;
|
|
IBOutlet AttributesFormatter *attributesFormatter;
|
|
}
|
|
@end
|