Files
main/Tweaks/PSHeader/CameraApp/CAMCaptureGraphConfiguration.h
2023-06-27 09:54:41 +02:00

19 lines
480 B
Objective-C

#import "CAMCaptureConfiguration.h"
NS_CLASS_AVAILABLE_IOS(10_0)
@interface CAMCaptureGraphConfiguration : NSObject <NSCoding>
+ (instancetype)captureGraphConfigurationUsingConfiguration:(CAMCaptureConfiguration *)configuration;
- (NSInteger)flashMode;
- (NSInteger)torchMode;
- (NSInteger)HDRMode;
- (NSInteger)timerDuration;
- (NSInteger)irisMode;
- (NSInteger)photoModeEffectFilterType;
- (NSInteger)squareModeEffectFilterType;
- (NSInteger)mode;
- (NSInteger)device;
@end