aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h')
-rw-r--r--iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
index 87c49e7f6..81dfd855e 100644
--- a/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
+++ b/iphone/FixMyStreet/Classes/FixMyStreetAppDelegate.h
@@ -12,21 +12,29 @@
@interface FixMyStreetAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
+// UIViewController *viewController;
UINavigationController *navigationController;
// The report currently being entered.
UIImage* image;
- NSString* location;
+ CLLocation* location;
NSString* subject;
+ NSString* name;
+ NSString* email;
+ NSString* phone;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) UINavigationController *navigationController;
+//@property (nonatomic, retain) IBOutlet UIViewController *viewController;
@property (nonatomic, retain) UIImage* image;
-@property (nonatomic, retain) NSString* location;
+@property (nonatomic, retain) CLLocation* location;
@property (nonatomic, retain) NSString* subject;
+@property (nonatomic, retain) NSString* name;
+@property (nonatomic, retain) NSString* email;
+@property (nonatomic, retain) NSString* phone;
-(void)uploadReport;