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

#import <UIKit/UIKit.h>

@interface EditingTableViewCell : UITableViewCell {
	UITextField *textField;
}
@property (nonatomic, retain) UITextField *textField;

@end