2006-09-02 12:09:20 -04:00
|
|
|
//
|
|
|
|
// FileOutlineView.h
|
|
|
|
// Cog
|
|
|
|
//
|
2006-09-04 14:46:18 -04:00
|
|
|
// Created by Vincent Spader on 8/20/06.
|
|
|
|
// Copyright 2006 Vincent Spader. All rights reserved.
|
2006-09-02 12:09:20 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2007-10-14 20:24:54 -03:00
|
|
|
@class FileTreeDataSource;
|
2006-09-02 12:09:20 -04:00
|
|
|
|
|
|
|
@interface FileOutlineView : NSOutlineView {
|
2007-02-18 15:59:23 -03:00
|
|
|
IBOutlet NSDrawer *fileDrawer;
|
2007-10-14 20:24:54 -03:00
|
|
|
|
|
|
|
FileTreeDataSource *dataSource;
|
2006-09-02 12:09:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|