mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
d5cd0e1901
git-svn-id: https://zxing.googlecode.com/svn/trunk@1354 59b500cc-1b3d-0410-9834-0bbf25fbcc57
22 lines
472 B
Objective-C
22 lines
472 B
Objective-C
//
|
|
// ScanTestAppDelegate.h
|
|
// ScanTest
|
|
//
|
|
// Created by David Kavanagh on 5/10/10.
|
|
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface ScanTestAppDelegate : NSObject <UIApplicationDelegate> {
|
|
|
|
UIWindow *window;
|
|
UINavigationController *navigationController;
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
|
|
|
|
@end
|
|
|