mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
6f851acf9c
git-svn-id: https://zxing.googlecode.com/svn/trunk@2088 59b500cc-1b3d-0410-9834-0bbf25fbcc57
27 lines
659 B
Objective-C
27 lines
659 B
Objective-C
//
|
|
// BarcodesAppDelegate.h
|
|
// Barcodes
|
|
//
|
|
// Created by Romain Pechayre on 11/14/10.
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "ZXMainViewController.h"
|
|
|
|
@interface BarcodesAppDelegate : NSObject <UIApplicationDelegate> {
|
|
UIWindow *window;
|
|
UITabBarController *tabBarController;
|
|
ZXMainViewController *viewController;
|
|
|
|
}
|
|
|
|
@property (nonatomic, retain) IBOutlet UIWindow *window;
|
|
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
|
|
@property (nonatomic, retain) IBOutlet ZXMainViewController *viewController;
|
|
|
|
- (void)registerView:(ZXMainViewController*)controller;
|
|
|
|
@end
|
|
|