using System.Drawing; using ClearCanvas.Common; using ClearCanvas.ImageViewer.PresentationStates.Dicom; namespace Nullstack.ClearCanvas.ImageViewerTools.Overlays { [ExtensionPoint] public sealed class OverlayTestPatternExtensionPoint : ExtensionPoint {} public interface IOverlayTestPattern { string Name { get; } string Description { get; } OverlayPlaneGraphic CreatePattern(Size patternSize); } }