mirror of
https://github.com/zxing/zxing.git
synced 2024-11-13 06:24:06 -08:00
22 lines
480 B
C
22 lines
480 B
C
|
//
|
||
|
// BarcodesAppDelegate.h
|
||
|
// Barcodes
|
||
|
//
|
||
|
// Created by Romain Pechayre on 11/14/10.
|
||
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
@class ZXMainViewController;
|
||
|
|
||
|
@interface BarcodesAppDelegate : NSObject <UIApplicationDelegate> {
|
||
|
UIWindow *window;
|
||
|
ZXMainViewController *rootController;
|
||
|
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
||
|
@property (nonatomic, retain) IBOutlet ZXMainViewController *rootController;
|
||
|
@end
|
||
|
|