mirror of
https://github.com/zxing/zxing.git
synced 2024-11-12 22:14:06 -08:00
c125dea97a
git-svn-id: https://zxing.googlecode.com/svn/trunk@1386 59b500cc-1b3d-0410-9834-0bbf25fbcc57
22 lines
546 B
Objective-C
22 lines
546 B
Objective-C
//
|
|
// RootViewController.h
|
|
// ScanTest
|
|
//
|
|
// Created by David Kavanagh on 5/10/10.
|
|
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ZXingWidgetController.h"
|
|
|
|
@interface RootViewController : UIViewController <ZXingDelegate> {
|
|
IBOutlet UITextView *resultsView;
|
|
ZXingWidgetController *scanController;
|
|
NSString *resultsToDisplay;
|
|
}
|
|
@property (nonatomic, retain) IBOutlet UITextView *resultsView;
|
|
@property (nonatomic, retain) NSString *resultsToDisplay;
|
|
|
|
- (IBAction)scanPressed:(id)sender;
|
|
@end
|