aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/InputTableViewController.h
diff options
context:
space:
mode:
authorMatthew Somerville <matthew@mysociety.org>2014-03-12 16:52:29 +0000
committerMatthew Somerville <matthew@mysociety.org>2014-03-12 16:52:29 +0000
commit8b725b38bb6abf3b77e22c2f65f93fabfc92c645 (patch)
tree6e4ab7d0c4047fc0342427da86da1f1820ae864b /iphone/FixMyStreet/Classes/InputTableViewController.h
parent87017d5197a623f642b0267ddd44f4d6c70bf751 (diff)
parent1185871fe27fa663a95b304e2f223d458525ed85 (diff)
Merge branch 'delete-mobile-app-folders'
Diffstat (limited to 'iphone/FixMyStreet/Classes/InputTableViewController.h')
-rw-r--r--iphone/FixMyStreet/Classes/InputTableViewController.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/iphone/FixMyStreet/Classes/InputTableViewController.h b/iphone/FixMyStreet/Classes/InputTableViewController.h
deleted file mode 100644
index f902c4017..000000000
--- a/iphone/FixMyStreet/Classes/InputTableViewController.h
+++ /dev/null
@@ -1,45 +0,0 @@
-//
-// InputTableViewController.h
-// FixMyStreet
-//
-// Created by Matthew on 26/09/2008.
-// Copyright 2008 UK Citizens Online Democracy. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-#import "MyCLController.h"
-
-@interface InputTableViewController : UIViewController <UINavigationControllerDelegate,UIImagePickerControllerDelegate,MyCLControllerDelegate> {
- IBOutlet UIImageView* imageView;
- IBOutlet UITableView* actionsToDoView;
- IBOutlet UIButton* settingsButton;
- UIBarButtonItem* backButton;
-
- // Not sure what I made these for
- UITableViewCell* actionTakePhotoCell;
- UITableViewCell* actionFetchLocationCell;
- UITableViewCell* actionSubjectCell;
-
- UILabel* subjectLabel;
- UILabel* subjectContent;
-}
-
--(void)enableSubmissionButton;
--(void)uploadReport;
--(void)reportUploaded:(BOOL)success;
-
--(IBAction)addPhoto:(id) sender;
--(IBAction)gotoSettings:(id)sender firstTime:(BOOL)firstTime;
--(IBAction)gotoAbout:(id)sender;
-
-// UIImagePickerControllerDelegate
-- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingImage:(UIImage *)image editingInfo:(NSDictionary *)editingInfo;
-- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker;
-
--(BOOL)startLocation;
-
-//MyCLControllerDelegate
--(void)newLocationUpdate:(CLLocation *)location;
--(void)newLocationError:(NSString *)text;
-
-@end