zxing/iphone/ScanTest/Classes/ScanTestAppDelegate.h
2010-05-12 18:24:18 +00:00

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