DrawString implementation
[mono.git] / mcs / class / System.Drawing / System.Drawing / Icon.cs
1 //
2 // System.Drawing.Icon.cs
3 //
4 // Author:
5 //   Dennis Hayes (dennish@Raytek.com)
6 //
7 // (C) 2002 Ximian, Inc
8 //
9 using System;
10 using System.Runtime.Serialization;
11
12 namespace System.Drawing
13 {
14         /// <summary>
15         /// Summary description for Icon.
16         /// </summary>
17         [Serializable]
18         public class Icon : MarshalByRefObject, ISerializable, ICloneable, IDisposable
19         {
20                 public Icon()
21                 {
22                         //
23                         // TODO: Add constructor logic here
24                         //
25                 }
26
27                 private Icon (SerializationInfo info, StreamingContext context)
28                 {
29                 }
30
31                 void ISerializable.GetObjectData(SerializationInfo info, StreamingContext context)
32                 {
33                 }
34
35                 public void Dispose ()
36                 {
37                 }
38
39                 object ICloneable.Clone()
40                 {
41                         throw new NotImplementedException ();
42                 }
43         }
44 }