CaptureConfig.h 555 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#import <Foundation/Foundation.h>

@interface CaptureConfig: NSObject

@property (nonatomic, copy) NSString *format;
@property (nonatomic, copy) NSString *type;
@property (nonatomic, copy) NSString *filePath;
@property (nonatomic, copy) NSNumber *quality;

-(instancetype)initWithFormat: (NSString *)format
                     withType: (NSString *)type
                  withQuality: (NSNumber *)quality
                 withFilePath: (NSString *)filePath;

- (bool) isEqualToCaptureConfig: (CaptureConfig *)other;

- (NSDictionary *) dictionary;

@end