Update theme submodule
[platform/upstream/gstreamer.git] / examples / tutorials / xcode iOS / Tutorial 2 / GStreamerBackend.h
1 #import <Foundation/Foundation.h>
2 #import "GStreamerBackendDelegate.h"
3
4 @interface GStreamerBackend : NSObject
5
6 /* Initialization method. Pass the delegate that will take care of the UI.
7  * This delegate must implement the GStreamerBackendDelegate protocol */
8 -(id) init:(id) uiDelegate;
9
10 /* Set the pipeline to PLAYING */
11 -(void) play;
12
13 /* Set the pipeline to PAUSED */
14 -(void) pause;
15
16 @end