Cog/FileTree/FileTreeViewController.h

20 lines
406 B
C
Raw Normal View History

2008-02-17 15:59:54 -03:00
//
2009-03-07 18:31:44 -03:00
// SideBarController.h
2008-02-17 15:59:54 -03:00
// Cog
//
2009-03-07 18:31:44 -03:00
// Created by Vincent Spader on 6/21/08.
2008-02-17 15:59:54 -03:00
// Copyright 2008 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
2009-03-07 18:31:44 -03:00
#import "SideViewController.h"
2008-02-17 15:59:54 -03:00
@class PlaylistLoader;
@class PlaybackController;
2009-03-07 18:31:44 -03:00
@interface FileTreeViewController : SideViewController {
IBOutlet PlaylistLoader *playlistLoader;
IBOutlet PlaybackController *playbackController;
2008-02-17 15:59:54 -03:00
}
@end