co-maps/iphone/Maps/UI/Editor/MWMEditorViewController.h
2025-11-22 13:58:55 +01:00

16 lines
338 B
Objective-C

#import "MWMTableViewController.h"
struct FeatureID;
namespace osm
{
class EditableMapObject;
} // namespace osm
@interface MWMEditorViewController : MWMTableViewController
@property (nonatomic) BOOL isCreating;
- (void)setFeatureToEdit:(FeatureID const &)fid;
- (void)setEditableMapObject:(osm::EditableMapObject const &)emo;
@end