mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 21:14:06 -08:00
19 lines
438 B
Plaintext
19 lines
438 B
Plaintext
|
//
|
||
|
// 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>
|
||
|
|
||
|
@implementation MultiFormatUPCEANReader
|
||
|
|
||
|
- (id) init {
|
||
|
zxing::oned::MultiFormatUPCEANReader *reader = new zxing::oned::MultiFormatUPCEANReader();
|
||
|
return [super initWithReader:reader];
|
||
|
}
|
||
|
@end
|