darling-cocotron/Onyx2D/O2EXIFDecoder.h
2013-03-22 22:58:02 +01:00

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