mirror of
https://github.com/zxing/zxing.git
synced 2025-02-21 02:55:27 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@2313 59b500cc-1b3d-0410-9834-0bbf25fbcc57
20 lines
369 B
Objective-C
20 lines
369 B
Objective-C
//
|
|
// AppDelegate.h
|
|
// bare
|
|
//
|
|
// Created by Steven Parkes on 6/19/12.
|
|
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class ViewController;
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
@property (strong, nonatomic) ViewController *viewController;
|
|
|
|
@end
|