Build fixes
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / GraphicsPathIterator.cs
1 //\r
2 // System.Drawing.Drawing2D.GraphicsPathIterator.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 GraphicsPathIterator.\r
14         /// </summary>\r
15         /// \r
16 \r
17         public sealed class GraphicsPathIterator : MarshalByRefObject {\r
18 \r
19                 GraphicsPath path;\r
20                 \r
21                 // Constructors\r
22                 public GraphicsPathIterator(GraphicsPath path) {\r
23                         this.path = path;\r
24                 }\r
25 \r
26                 //Public Properites\r
27                 public int Count {\r
28                         get {\r
29                                 throw new NotImplementedException ();\r
30                         }\r
31                 }\r
32 \r
33                 public int SubpathCount {\r
34                         get {\r
35                                 throw new NotImplementedException ();\r
36                         }\r
37                 }\r
38 \r
39                 //Public Methods.\r
40                 public int CopyData( ref PointF [] points, ref byte [] types, int startIndex, int endIndex){\r
41                         throw new NotImplementedException ();\r
42                 }\r
43 \r
44                 public void Dispose(){\r
45                 }\r
46 \r
47                 public int Enumerate(ref PointF [] points, ref byte [] types){\r
48                         throw new NotImplementedException ();\r
49                 }\r
50 \r
51                 public bool HasCurve(){\r
52                         throw new NotImplementedException ();\r
53                 }\r
54 \r
55                 public int NextMarker(GraphicsPath path){\r
56                         throw new NotImplementedException ();\r
57                 }\r
58 \r
59                 public int NextMarker(out int startIndex, out int endIndex){\r
60                         throw new NotImplementedException ();\r
61                 }\r
62 \r
63                 public int NextPathType(out byte pathType, out int startIndex, int endIndex){\r
64                         throw new NotImplementedException ();\r
65                 }\r
66 \r
67                 public int NextSubpath(GraphicsPath path, out bool isClosed){\r
68                         throw new NotImplementedException ();\r
69                 }\r
70 \r
71                 public int NextSubpath(out int startIndex, out int endIndex, out bool isClosed){\r
72                         throw new NotImplementedException ();\r
73                 }\r
74 \r
75                 public void Rewind(){\r
76                 }\r
77 \r
78         }\r
79 }\r