Statistics
| Branch: | Tag: | Revision:

root / Classes / MediaViewController.h @ 9fee07a6

History | View | Annotate | Download (526 Bytes)

1
//
2
//  MediaViewController.h
3
//  OpenStack
4
//
5
//  Created by Mike Mayo on 1/8/11.
6
//  Copyright 2011 __MyCompanyName__. All rights reserved.
7
//
8

    
9
#import <UIKit/UIKit.h>
10
#import <MediaPlayer/MPMoviePlayerController.h>
11

    
12

    
13
@class Container, StorageObject;
14

    
15
@interface MediaViewController : UIViewController {
16
    Container *container;
17
    StorageObject *object;
18
    MPMoviePlayerController *player;
19
    id observer;
20
}
21

    
22
@property (nonatomic, retain) Container *container;
23
@property (nonatomic, retain) StorageObject *object;
24

    
25
@end