Merge pull request #10 from gunyarakun/fix-invalid-return
[cocotron.git] / Onyx2D / O2EXIFDecoder.h
blobf21fa01eacb7f944b0da0693ebf1a7333b11d620
1 //
2 // O2EXIFDecoder.h
3 // AppKit
4 //
5 // Created by Airy ANDRE on 22/03/13.
6 //
7 //
9 #import <Foundation/Foundation.h>
11 @interface O2EXIFDecoder : NSObject {
12 NSMutableDictionary *_tags;
14 - (id)initWithBytes:(const uint8_t *)bytes length:(size_t)length;
15 - (NSMutableDictionary *)tags;
16 @end