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