1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
Source-SnapChat/Lens/SCManagedCapturerLensAPIProvider.h
2018-05-24 00:24:20 +03:00

21 lines
450 B
Objective-C

//
// 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