mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-27 05:50:27 +00:00
17 lines
292 B
Objective-C
17 lines
292 B
Objective-C
//
|
|
// O2EXIFDecoder.h
|
|
// AppKit
|
|
//
|
|
// Created by Airy ANDRE on 22/03/13.
|
|
//
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface O2EXIFDecoder : NSObject {
|
|
NSMutableDictionary *_tags;
|
|
}
|
|
- (id)initWithBytes:(const uint8_t *)bytes length:(size_t)length;
|
|
- (NSMutableDictionary *)tags;
|
|
@end
|