mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@495 59b500cc-1b3d-0410-9834-0bbf25fbcc57
27 lines
604 B
Objective-C
27 lines
604 B
Objective-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;
|
|
UIFont *bodyFont;
|
|
NSDateFormatter *dateFormatter;
|
|
}
|
|
|
|
@property (nonatomic, retain) ParsedResult *result;
|
|
@property (nonatomic, retain) Scan *scan;
|
|
@property (nonatomic, retain) NSDateFormatter *dateFormatter;
|
|
|
|
- (id)initWithResult:(ParsedResult *)r forScan:(Scan *)s;
|
|
|
|
@end
|