]> git.sesse.net Git - vlc/blob - projects/macosx/frontrow_plugin/VLCMediaListController.h
macosx/frontrow_plugin: VLCMediaListController, display a mediaListAspect in a FrontR...
[vlc] / projects / macosx / frontrow_plugin / VLCMediaListController.h
1 //
2 //  VLCMediaListController.h
3 //  FRVLC
4 //
5 //  Created by Pierre d'Herbemont on 2/11/08.
6 //  Copyright 2008 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <VLCKit/VLCKit.h>
11 #import <BackRow/BRMenuController.h>
12
13
14 @interface VLCMediaListController : BRMenuController {
15     VLCMediaListAspect * mediaListAspect;
16     BOOL isReloading;
17 }
18
19 - initWithMediaListAspect:(VLCMediaListAspect *)mediaListAspect;
20
21 @end