Skip to content

Instantly share code, notes, and snippets.

@erikprice
Created February 12, 2014 19:09
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/8962417 to your computer and use it in GitHub Desktop.
Save erikprice/8962417 to your computer and use it in GitHub Desktop.
//
// CPPViewController.h
// Catalog Playlist Playback
//
// Created by Robert Crooks on 10/9/13.
// Copyright (c) 2013 Brightcove. All rights reserved.
//
#import <UIKit/UIKit.h>
// forward references for playback controller protocol and the catalog service class
@protocol BCOVPlaybackController;
@class BCOVCatalogService;
// create media request factory
// allows access to Catalog for Japan accounts
// and via proxy
@class BCOVMediaRequestFactory;
@interface CPPViewController : UIViewController
// declare the playback controller and catalog 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