new file in list.unix
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / HatchBrush.cs
1 //\r
2 // System.Drawing.Drawing2D.HatchBrush.cs\r
3 //\r
4 // Author:\r
5 //   Dennis Hayes (dennish@Raytek.com)\r
6 //\r
7 // (C) 2002/3 Ximian, Inc\r
8 //\r
9 using System;\r
10 \r
11 namespace System.Drawing.Drawing2D {\r
12         /// <summary>\r
13         /// Summary description for HatchBrush.\r
14         /// </summary>\r
15         public sealed class HatchBrush : Brush {\r
16                 public HatchBrush(HatchStyle hatchstyle, Color foreColor, Color backColor) {\r
17                 }\r
18 \r
19                 public HatchBrush(HatchStyle hatchstyle, Color foreColor) {\r
20                 }\r
21 \r
22                 public Color BackgroundColor {\r
23                         get {\r
24                                 throw new NotImplementedException ();\r
25                         }\r
26                 }\r
27 \r
28                 public Color ForegroundColor {\r
29                         get {\r
30                                 throw new NotImplementedException ();\r
31                         }\r
32                 }\r
33 \r
34                 public HatchStyle HatchStyle {\r
35                         get {\r
36                                 throw new NotImplementedException ();\r
37                         }\r
38                 }\r
39 \r
40                 public override object Clone(){\r
41                         throw new NotImplementedException ();\r
42                 }\r
43 \r
44 \r
45         }\r
46 }\r