aboutsummaryrefslogtreecommitdiffstats
path: root/iphone/FixMyStreet/Classes/EditSubjectViewController.h
blob: e66509993dc587c44e3dcf074535f1372fb77511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
//  EditSubjectViewController.h
//  FixMyStreet
//
//  Created by Matthew on 01/10/2008.
//  Copyright 2008 UK Citizens Online Democracy. All rights reserved.
//

#import <UIKit/UIKit.h>

@class SubjectTableViewCell;

@interface EditSubjectViewController : UITableViewController <UITextFieldDelegate> {
	SubjectTableViewCell *subjectCell;
}

-(void)updateSummary:(NSString*)summary;

@end