scan archive UI improvements, phase 2
[zxing.git] / iphone / Classes / ScanViewController.h
1 //
2 //  ScanViewController.h
3 //  ZXing
4 //
5 //  Created by Christian Brunschen on 24/06/2008.
6 //  Copyright 2008 Google Inc. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10 #import "Scan.h"
11 #import "ParsedResult.h"
12
13 @interface ScanViewController : UITableViewController {
14   IBOutlet ParsedResult *result;
15   IBOutlet Scan *scan;
16 }
17
18 @property (nonatomic, retain) ParsedResult *result;
19 @property (nonatomic, retain) Scan *scan;
20
21 - (id)initWithResult:(ParsedResult *)r forScan:(Scan *)s;
22
23 @end