mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 21:44:07 -08:00
17 lines
269 B
C
17 lines
269 B
C
|
//
|
||
|
// QRCodeReader.h
|
||
|
// ZXingWidget
|
||
|
//
|
||
|
// Created by Romain Pechayre on 6/14/10.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import "FormatReader.h"
|
||
|
|
||
|
@interface QRCodeReader : FormatReader {
|
||
|
|
||
|
}
|
||
|
- (id) init;
|
||
|
@end
|