mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 13:04:05 -08:00
73dbb0afb3
git-svn-id: https://zxing.googlecode.com/svn/trunk@1673 59b500cc-1b3d-0410-9834-0bbf25fbcc57
21 lines
467 B
Objective-C
21 lines
467 B
Objective-C
//
|
|
// BarcodesAppDelegate.h
|
|
// Barcodes
|
|
//
|
|
// Created by Romain Pechayre on 11/14/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface BarcodesAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
UINavigationController *navigationController;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
|
|
@end
|
|
|