using System.Collections.Generic; using GeoAPI.Extensions.Feature; using GeoAPI.Geometries; using SharpMap.Api.Delegates; using SharpMap.Api.Editors; namespace SharpMap.Editors { public class FeatureRelationInteractor : IFeatureRelationInteractor { public virtual IFeatureRelationInteractor Activate(IFeature feature, IFeature cloneFeature, AddRelatedFeature addRelatedFeature, int level, IFallOffPolicy fallOffPolicy) { return null; } public virtual void UpdateRelatedFeatures(IFeature feature, IGeometry newGeometry, IList trackerIndices) {} public virtual void StoreRelatedFeatures(IFeature feature, IGeometry newGeometry, IList trackerIndices) {} } }