mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
b3c6b48e11
git-svn-id: https://zxing.googlecode.com/svn/trunk@495 59b500cc-1b3d-0410-9834-0bbf25fbcc57
22 lines
352 B
Objective-C
22 lines
352 B
Objective-C
//
|
|
// ScannedImageView.h
|
|
// ZXing
|
|
//
|
|
// Created by Christian Brunschen on 01/07/2008.
|
|
// Copyright 2008 Google Inc. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
@interface ScannedImageView : UIView {
|
|
UIImage *image;
|
|
NSMutableArray *resultPoints;
|
|
}
|
|
|
|
@property (nonatomic, retain) UIImage *image;
|
|
|
|
- (void) addResultPoint:(CGPoint)p;
|
|
|
|
@end
|