Add to Gambit REPL some functions to send SMS and take pictures (this functionnality...
[gambit-c.git] / examples / iOS / AppDelegate.h
blob8c7003d2347fd5c41244472f16a634d8a3727d01
1 //
2 // AppDelegate.h
3 //
4 // Created by Marc Feeley on 11-03-06.
5 // Copyright 2011 Université de Montréal. All rights reserved.
6 //
8 #import <UIKit/UIKit.h>
9 #import "ViewController.h"
11 @interface AppDelegate : NSObject <UIApplicationDelegate> {
12 UIWindow *window;
13 ViewController *viewController;
16 @property (nonatomic, retain) IBOutlet UIWindow *window;
17 @property (nonatomic, retain) IBOutlet ViewController *viewController;
19 @end