summaryrefslogtreecommitdiff
path: root/Calculator/AppDelegate.h
blob: 665ffd1e1037236660be1597b73fd966b9acff1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  AppDelegate.h
//  Calculator
//
//  Created by mo khan on 2013-05-20.
//  Copyright (c) 2013 mo khan. All rights reserved.
//

#import <UIKit/UIKit.h>

@class ViewController;

@interface AppDelegate : UIResponder <UIApplicationDelegate>

@property (strong, nonatomic) UIWindow *window;

@property (strong, nonatomic) ViewController *viewController;

@end