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