2010-06-15 15:01:04 -07:00
|
|
|
//
|
|
|
|
// MultiFormatUPCEANReader.mm
|
|
|
|
// ZXingWidget
|
|
|
|
//
|
|
|
|
// Created by Romain Pechayre on 6/14/10.
|
|
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "MultiFormatUPCEANReader.h"
|
|
|
|
#import <zxing/oned/MultiFormatUPCEANReader.h>
|
2010-08-08 21:46:06 -07:00
|
|
|
#include <zxing/DecodeHints.h>
|
2010-06-15 15:01:04 -07:00
|
|
|
|
|
|
|
@implementation MultiFormatUPCEANReader
|
|
|
|
|
|
|
|
- (id) init {
|
2010-08-08 21:46:06 -07:00
|
|
|
zxing::oned::MultiFormatUPCEANReader *reader = new zxing::oned::MultiFormatUPCEANReader(zxing::DecodeHints::DEFAULT_HINT);
|
2010-06-15 15:01:04 -07:00
|
|
|
return [super initWithReader:reader];
|
|
|
|
}
|
|
|
|
@end
|