| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Drawing.Drawing2D.PathGradientBrush.cs
- //
- // Authors:
- // Dennis Hayes ([email protected])
- // Andreas Nahr ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D
- {
- /// <summary>
- /// Summary description for PathGradientBrush.
- /// </summary>
- public sealed class PathGradientBrush : Brush
- {
- internal PathGradientBrush()
- {
- }
- [MonoTODO("implement")]
- public override object Clone ()
- {
- throw new NotImplementedException ();
- }
- }
- }
|