cog/FileTree/FileTreeViewController.h

24 lines
525 B
C
Raw Normal View History

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.
//
2009-03-07 21:31:44 +00:00
#import "SideViewController.h"
#import <Cocoa/Cocoa.h>
2008-02-17 18:59:54 +00:00
@class PlaylistLoader;
@class PlaybackController;
@class FileTreeOutlineView;
2009-03-07 21:31:44 +00:00
@interface FileTreeViewController : SideViewController {
IBOutlet PlaylistLoader *playlistLoader;
IBOutlet PlaybackController *playbackController;
IBOutlet FileTreeOutlineView *fileTreeOutlineView;
2008-02-17 18:59:54 +00:00
}
- (FileTreeOutlineView *)outlineView;
2008-02-17 18:59:54 +00:00
@end