23 lines
401 B
C
23 lines
401 B
C
|
//
|
||
|
// FileTreeController.h
|
||
|
// Cog
|
||
|
//
|
||
|
// Created by Vincent Spader on 2/17/08.
|
||
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
#import "PlaylistLoader.h"
|
||
|
|
||
|
@class PlaylistLoader;
|
||
|
@class SideView;
|
||
|
|
||
|
@interface FileTreeViewController : NSObject {
|
||
|
IBOutlet SideView *controller;
|
||
|
IBOutlet NSOutlineView *outlineView;
|
||
|
}
|
||
|
|
||
|
- (IBAction)addToPlaylist:(id)sender;
|
||
|
|
||
|
@end
|