25 lines
408 B
C
25 lines
408 B
C
|
//
|
||
|
// FileTreeDataSource.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 10/14/07.
|
||
|
// Copyright 2007 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
@class PathNode;
|
||
|
|
||
|
@interface FileTreeDataSource : NSObject {
|
||
|
PathNode *rootNode;
|
||
|
|
||
|
IBOutlet NSOutlineView *outlineView;
|
||
|
}
|
||
|
|
||
|
- (NSString *)rootPath;
|
||
|
- (void)setRootPath:(NSString *)rootPath;
|
||
|
|
||
|
- (void)reloadPathNode:(PathNode *)item;
|
||
|
|
||
|
@end
|