// // SCManagedDeviceCapacityAnalyzer.h // Snapchat // // Created by Liu Liu on 5/1/15. // Copyright (c) 2015 Liu Liu. All rights reserved. // #import "SCManagedDeviceCapacityAnalyzerListener.h" #import #import @class SCManagedCaptureDevice; @protocol SCPerforming; extern NSInteger const kSCManagedDeviceCapacityAnalyzerMaxISOPresetHigh; @interface SCManagedDeviceCapacityAnalyzer : NSObject @property (nonatomic, assign) BOOL lowLightConditionEnabled; - (instancetype)initWithPerformer:(id)performer; - (void)addListener:(id)listener; - (void)removeListener:(id)listener; - (void)setAsFocusListenerForDevice:(SCManagedCaptureDevice *)captureDevice; - (void)removeFocusListener; @end