mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
21 lines
404 B
Plaintext
21 lines
404 B
Plaintext
|
//
|
||
|
// QRCodeReader.mm
|
||
|
// ZXingWidget
|
||
|
//
|
||
|
// Created by Romain Pechayre on 6/14/10.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "QRCodeReader.h"
|
||
|
#import <zxing/qrcode/QRCodeReader.h>
|
||
|
#import "FormatReader.h"
|
||
|
|
||
|
@implementation QRCodeReader
|
||
|
|
||
|
|
||
|
- (id) init {
|
||
|
zxing::qrcode::QRCodeReader *reader = new zxing::qrcode::QRCodeReader();
|
||
|
return [super initWithReader:reader];
|
||
|
}
|
||
|
@end
|