Update theme submodule
[platform/upstream/gstreamer.git] / tutorials / xcode iOS / Tutorial 3 / main.m
1 #import <UIKit/UIKit.h>
2
3 #import "AppDelegate.h"
4 #include "gst_ios_init.h"
5
6 int main(int argc, char *argv[])
7 {
8     @autoreleasepool {
9         gst_ios_init();
10         return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
11     }
12 }