2008-02-17 18:59:54 +00:00
|
|
|
//
|
2009-03-07 21:31:44 +00:00
|
|
|
// SideBarController.h
|
2008-02-17 18:59:54 +00:00
|
|
|
// Cog
|
|
|
|
//
|
2009-03-07 21:31:44 +00:00
|
|
|
// Created by Vincent Spader on 6/21/08.
|
2008-02-17 18:59:54 +00:00
|
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-03-07 21:31:44 +00:00
|
|
|
#import "SideViewController.h"
|
2008-02-17 18:59:54 +00:00
|
|
|
|
2008-02-20 19:36:34 +00:00
|
|
|
@class PlaylistLoader;
|
2009-08-16 16:49:34 +00:00
|
|
|
@class PlaybackController;
|
2013-10-11 10:03:23 +00:00
|
|
|
@class FileTreeOutlineView;
|
2009-03-07 21:31:44 +00:00
|
|
|
@interface FileTreeViewController : SideViewController {
|
|
|
|
IBOutlet PlaylistLoader *playlistLoader;
|
2009-08-16 16:49:34 +00:00
|
|
|
IBOutlet PlaybackController *playbackController;
|
2013-10-11 10:03:23 +00:00
|
|
|
IBOutlet FileTreeOutlineView *fileTreeOutlineView;
|
2008-02-17 18:59:54 +00:00
|
|
|
}
|
|
|
|
|
2013-10-11 10:03:23 +00:00
|
|
|
- (FileTreeOutlineView*)outlineView;
|
|
|
|
|
2008-02-17 18:59:54 +00:00
|
|
|
@end
|