mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
22 lines
472 B
C
22 lines
472 B
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
|
||
|
|