Small style stuff
[zxing.git] / iphone / ZXingWidget / Classes / MultiFormatUPCEANReader.mm
1 //
2 //  MultiFormatUPCEANReader.mm
3 //  ZXingWidget
4 //
5 //  Created by Romain Pechayre on 6/14/10.
6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
7 //
8
9 #import "MultiFormatUPCEANReader.h"
10 #import <zxing/oned/MultiFormatUPCEANReader.h>
11 #include <zxing/DecodeHints.h>
12
13 @implementation MultiFormatUPCEANReader
14
15 - (id) init {
16   zxing::oned::MultiFormatUPCEANReader *reader = new zxing::oned::MultiFormatUPCEANReader(zxing::DecodeHints::DEFAULT_HINT);
17   return [super initWithReader:reader];
18 }
19 @end