2004-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / Mono.Data.MySql / Mono.Data.MySql / 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 using System;
10
11 namespace Mono.Data.MySql {
12
13         /// <summary>
14         ///   The TODO attribute is used to flag all incomplete bits in our class libraries
15         /// </summary>
16         ///
17         /// <remarks>
18         ///   Use this to decorate any element which you think is not complete
19         /// </remarks>
20         [AttributeUsage (AttributeTargets.All)]
21         internal class MonoTODOAttribute : Attribute {
22
23                 string comment;
24
25                 public MonoTODOAttribute ()
26                 {}
27
28                 public MonoTODOAttribute (string comment)
29                 {
30                         this.comment = comment;
31                 }
32
33                 public string Comment {
34                         get { return comment; }
35                 }
36         }
37 }