zxing/iphone/Barcodes/Classes/BarcodesAppDelegate.h

22 lines
480 B
C
Raw Normal View History

//
// 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