More fixes to the build files after trying to build the whole thing again for release
[zxing.git] / iphone / Classes / ScannedImageView.h
1 //
2 //  ScannedImageView.h
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 01/07/2008.
6 //  Copyright 2008 Google Inc. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11
12 @interface ScannedImageView : UIView {
13   UIImage *image;
14   NSMutableArray *resultPoints;
15 }
16
17 @property (nonatomic, retain) UIImage *image;
18
19 - (void) addResultPoint:(CGPoint)p;
20
21 @end