mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-22 22:23:44 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
14 lines
307 B
Objective-C
14 lines
307 B
Objective-C
#import "MWMTableViewCell.h"
|
|
|
|
@protocol MWMStreetEditorEditCellProtocol <NSObject>
|
|
|
|
- (void)editCellTextChanged:(NSString *)text;
|
|
|
|
@end
|
|
|
|
@interface MWMStreetEditorEditTableViewCell : MWMTableViewCell
|
|
|
|
- (void)configWithDelegate:(id<MWMStreetEditorEditCellProtocol>)delegate street:(NSString *)street;
|
|
|
|
@end
|