mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 12:51:16 +00:00
12 lines
209 B
Objective-C
12 lines
209 B
Objective-C
#import <UIKit/UIKit.h>
|
|
|
|
@interface LibraryViewController : UITableViewController
|
|
{
|
|
NSArray *libraryEntries;
|
|
NSArray *mediaEntries;
|
|
NSArray *onlineEntries;
|
|
}
|
|
|
|
- (IBAction)refresh:(id)sender;
|
|
|
|
@end
|