mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
24 lines
488 B
C
24 lines
488 B
C
|
//
|
||
|
// ScanViewController.h
|
||
|
// ZXing
|
||
|
//
|
||
|
// Created by Christian Brunschen on 24/06/2008.
|
||
|
// Copyright 2008 Google Inc. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "Scan.h"
|
||
|
#import "ParsedResult.h"
|
||
|
|
||
|
@interface ScanViewController : UITableViewController {
|
||
|
IBOutlet ParsedResult *result;
|
||
|
IBOutlet Scan *scan;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) ParsedResult *result;
|
||
|
@property (nonatomic, retain) Scan *scan;
|
||
|
|
||
|
- (id)initWithResult:(ParsedResult *)r forScan:(Scan *)s;
|
||
|
|
||
|
@end
|