mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
1b21ed218c
git-svn-id: https://zxing.googlecode.com/svn/trunk@1650 59b500cc-1b3d-0410-9834-0bbf25fbcc57
33 lines
861 B
Objective-C
33 lines
861 B
Objective-C
//
|
|
// ZXMainViewController.h
|
|
// Barcodes
|
|
//
|
|
// Created by Romain Pechayre on 11/14/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ZXingWidgetController.h"
|
|
@class UniversalResultParser;
|
|
@class ParsedResult;
|
|
|
|
@interface ZXMainViewController : UIViewController <ZXingDelegate,UIActionSheetDelegate> {
|
|
UniversalResultParser *resultParser;
|
|
NSArray *actions;
|
|
ParsedResult *result;
|
|
}
|
|
|
|
@property(nonatomic,retain) UniversalResultParser *resultParser;
|
|
@property (nonatomic,assign) NSArray *actions;
|
|
@property (nonatomic,assign) ParsedResult *result;
|
|
|
|
- (IBAction)scan:(id)sender;
|
|
- (IBAction)info:(id)sender;
|
|
|
|
- (void)zxingController:(ZXingWidgetController*)controller didScanResult:(NSString *)result;
|
|
- (void)zxingControllerDidCancel:(ZXingWidgetController*)controller;
|
|
- (void)performResultAction;
|
|
|
|
|
|
@end
|