You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
409 B
20 lines
409 B
//
|
|
// SCManagedVideoCapturerHandler.h
|
|
// Snapchat
|
|
//
|
|
// Created by Jingtian Yang on 11/12/2017.
|
|
//
|
|
|
|
#import "SCManagedVideoCapturer.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class SCCaptureResource;
|
|
|
|
@interface SCManagedVideoCapturerHandler : NSObject <SCManagedVideoCapturerDelegate>
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithCaptureResource:(SCCaptureResource *)captureResource;
|
|
|
|
@end
|