mirror of
https://github.com/i5xx/Source-SCCamera
synced 2025-04-12 00:55:44 +02:00
22 lines
539 B
Objective-C
22 lines
539 B
Objective-C
//
|
|
// SCFeatureImageCaptureImpl.h
|
|
// SCCamera
|
|
//
|
|
// Created by Kristian Bauer on 4/18/18.
|
|
//
|
|
|
|
#import "AVCameraViewEnums.h"
|
|
#import "SCFeatureImageCapture.h"
|
|
|
|
#import <SCBase/SCMacros.h>
|
|
|
|
@protocol SCCapturer;
|
|
@class SCLogger;
|
|
|
|
@interface SCFeatureImageCaptureImpl : NSObject <SCFeatureImageCapture>
|
|
SC_INIT_AND_NEW_UNAVAILABLE
|
|
- (instancetype)initWithCapturer:(id<SCCapturer>)capturer
|
|
logger:(SCLogger *)logger
|
|
cameraViewType:(AVCameraViewType)cameraViewType NS_DESIGNATED_INITIALIZER;
|
|
@end
|