]> git.sesse.net Git - vlc/blob - projects/macosx/frontrow_plugin/VLCPlayerController.h
macosx/frontrow_plugin: VLCMediaListController, display a mediaListAspect in a FrontR...
[vlc] / projects / macosx / frontrow_plugin / VLCPlayerController.h
1 //
2 //  VLCPlayerController.h
3 //  FRVLC
4 //
5 //  Created by hyei on 06/09/07.
6 //  Copyright 2007 __MyCompanyName__. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10 #import <BackRow/BRMediaPlayerController.h>
11 #import "VLCMediaLayer.h"
12 #import <VLCKit/VLCKit.h>
13
14 @interface VLCPlayerController : BRController
15 {
16     VLCMediaLayer * _mediaLayer;
17 }
18
19 @property(retain) VLCMedia * media;
20
21 @end