StreamingKit/ExampleApp/ExampleApp/SampleQueueId.h

18 lines
342 B
Objective-C

//
// SampleQueueId.h
// ExampleApp
//
// Created by Thong Nguyen on 20/01/2014.
// Copyright (c) 2014 Thong Nguyen. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface SampleQueueId : NSObject
@property (readwrite) int count;
@property (readwrite) NSURL* url;
-(id) initWithUrl:(NSURL*)url andCount:(int)count;
@end