cog/FileTree/FileTreeViewController.h

23 lines
401 B
C
Raw Normal View History

2008-02-17 18:59:54 +00:00
//
// FileTreeController.h
// Cog
//
// Created by Vincent Spader on 2/17/08.
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "PlaylistLoader.h"
2008-02-17 18:59:54 +00:00
@class PlaylistLoader;
2008-06-21 04:05:30 +00:00
@class SideView;
2008-02-17 18:59:54 +00:00
2008-06-21 04:05:30 +00:00
@interface FileTreeViewController : NSObject {
IBOutlet SideView *controller;
IBOutlet NSOutlineView *outlineView;
2008-02-17 18:59:54 +00:00
}
- (IBAction)addToPlaylist:(id)sender;
2008-02-17 18:59:54 +00:00
@end