Skip to content

Instantly share code, notes, and snippets.

@erikprice
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikprice/8960066 to your computer and use it in GitHub Desktop.
Save erikprice/8960066 to your computer and use it in GitHub Desktop.
//
// CPUViewController.h
// Cue Point Usage
//
// Created by Robert Crooks on 11/14/13.
// Copyright (c) 2013 Robert Crooks. All rights reserved.
//
#import <UIKit/UIKit.h>
// import the SDK master header
#import <BCOVPlayerSDK.h>
// forward reference for the catalog service class
@class BCOVCatalogService;
// forward reference for the media request factory
// allows access to Catalog for Japan accounts
// and via proxy
@class BCOVMediaRequestFactory;
@interface CPUViewController : UIViewController <BCOVPlaybackControllerDelegate>
// declare the playback controller, catalog, and media request factory properties
@property (strong, nonatomic) id<BCOVPlaybackController> controller;
@property (strong, nonatomic) BCOVCatalogService *catalog;
// declare property for the media request factory
@property (strong, nonatomic) BCOVMediaRequestFactory *mediaRequestFactory;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment