mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-10 05:29:20 +00:00
14 lines
321 B
C
14 lines
321 B
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
|