Source-SCCamera/Lens/SCManagedCapturerLensAPIPro...

21 lines
450 B
C
Raw Normal View History

2018-08-08 01:17:00 +02:00
//
// 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