the very simple test app that calls the ZXingWidget
[zxing.git] / iphone / ScanTest / Classes / ScanTestAppDelegate.h
1 //
2 //  ScanTestAppDelegate.h
3 //  ScanTest
4 //
5 //  Created by David Kavanagh on 5/10/10.
6 //  Copyright __MyCompanyName__ 2010. All rights reserved.
7 //
8
9 #import <UIKit/UIKit.h>
10
11 @interface ScanTestAppDelegate : NSObject <UIApplicationDelegate> {
12     
13     UIWindow *window;
14     UINavigationController *navigationController;
15 }
16
17 @property (nonatomic, retain) IBOutlet UIWindow *window;
18 @property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
19
20 @end
21