2003-07-21 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
[mono.git] / mcs / class / System.Drawing.Design / Assembly / TODOAttribute.cs
1 //
2 // TODOAttribute.cs
3 //
4 // Author:
5 //   Ravi Pratap (ravi@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 using System;
11
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 {
21
22         string comment;
23                 
24         public MonoTODOAttribute ()
25         {}
26
27         public MonoTODOAttribute (string comment)
28         {
29                         this.comment = comment;
30         }
31 }