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
450 B
20 lines
450 B
//
|
|
// SCManagedCapturerLensAPIProvider.h
|
|
// SCCamera
|
|
//
|
|
// Created by Michel Loenngren on 4/12/18.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol SCManagedCapturerLensAPI;
|
|
@class SCCaptureResource;
|
|
|
|
/**
|
|
Provider for creating new instances of SCManagedCapturerLensAPI within SCCamera.
|
|
*/
|
|
@protocol SCManagedCapturerLensAPIProvider <NSObject>
|
|
|
|
- (id<SCManagedCapturerLensAPI>)lensAPIForCaptureResource:(SCCaptureResource *)captureResouce;
|
|
|
|
@end
|