**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / WINELib / TODOAttribute.cs
blobb37681b14ad1cfef5a450a52e7a92703b8ce0efb
1 //
2 // TODOAttribute.cs
3 //
4 // Author:
5 // Ravi Pratap (ravi@ximian.com)
6 //
7 // (C) Ximian, Inc. http://www.ximian.com
8 //
10 namespace System.Windows.Forms {
12 /// <summary>
13 /// The TODO attribute is used to flag all incomplete bits in our class libraries
14 /// </summary>
15 ///
16 /// <remarks>
17 /// Use this to decorate any element which you think is not complete
18 /// </remarks>
19 [AttributeUsage (AttributeTargets.All)]
20 internal class MonoTODOAttribute : Attribute {
22 string comment;
24 public MonoTODOAttribute ()
27 public MonoTODOAttribute (string comment)
29 this.comment = comment;
32 public string Comment {
33 get { return comment; }