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.
21 lines
539 B
21 lines
539 B
//
|
|
// 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
|