18 lines
259 B
C
18 lines
259 B
C
|
//
|
||
|
// FileTreeOutlineView.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 6/21/08.
|
||
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
|
||
|
@interface FileTreeOutlineView : NSOutlineView {
|
||
|
}
|
||
|
|
||
|
- (void)keyDown:(NSEvent *)e;
|
||
|
|
||
|
@end
|