2010-11-14 09:18:29 -08:00
|
|
|
//
|
|
|
|
// 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;
|
2010-12-22 09:35:17 -08:00
|
|
|
UITabBarController *tabBarController;
|
2010-11-14 09:18:29 -08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
2010-12-22 09:35:17 -08:00
|
|
|
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
|
2010-11-14 09:18:29 -08:00
|
|
|
@end
|
|
|
|
|