Update theme submodule
[platform/upstream/gstreamer.git] / tutorials / xcode iOS / Tutorial 5 / LibraryViewController.h
1 #import <UIKit/UIKit.h>
2
3 @interface LibraryViewController : UITableViewController
4 {
5     NSArray *libraryEntries;
6     NSArray *mediaEntries;
7     NSArray *onlineEntries;
8 }
9
10 - (IBAction)refresh:(id)sender;
11
12 @end