Issue 479
[zxing.git] / iphone / ZXingWidget / Classes / FormatReader.h
1 //
2 //  FormatReader.h
3 //
4 //  Created by Dave MacLachlan on 2010-05-03.
5 /*
6  * Copyright 2010 ZXing authors
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  */
20
21 #import <Foundation/Foundation.h>
22 #import <zxing/common/Counted.h>
23 #import <zxing/Result.h>
24 #import <zxing/BinaryBitmap.h>
25 #import <zxing/Reader.h>
26 #import <zxing/ResultPointCallback.h>
27
28 @interface FormatReader : NSObject {
29   zxing::Reader *reader_;
30 }
31
32 + (void)registerFormatReader:(FormatReader *)formatReader;
33 //+ (NSSet *)formatReaders;
34
35 - (id)initWithReader:(zxing::Reader *)reader;
36 - (zxing::Ref<zxing::Result>)decode:(zxing::Ref<zxing::BinaryBitmap>)grayImage;
37 - (zxing::Ref<zxing::Result>)decode:(zxing::Ref<zxing::BinaryBitmap>)grayImage andCallback:(zxing::Ref<zxing::ResultPointCallback>)callback;
38
39 @end