Added file
authorJackson Harper <jackson@novell.com>
Sat, 7 Dec 2002 20:31:02 +0000 (20:31 -0000)
committerJackson Harper <jackson@novell.com>
Sat, 7 Dec 2002 20:31:02 +0000 (20:31 -0000)
svn path=/trunk/mcs/; revision=9429

mcs/class/Cscompmgd/Microsoft.CSharp/ChangeLog
mcs/class/Cscompmgd/Microsoft.CSharp/TODOAttribute.cs [new file with mode: 0644]

index 7d67469f3757288e8ea008a3b20a8886b0c56176..596ac8ce693d4bd2723a4b04c22ca2a00be56a56 100644 (file)
@@ -1,3 +1,7 @@
+2002-12-07 Jackson Harper <jackson@latitudegeo.com>
+
+       * TODOAttribute.cs: Added file
+
 2002-12-07 Jackson Harper <jackson@latitudegeo.com>
 
        * Compiler.cs CompilerError.cs: Moved file
diff --git a/mcs/class/Cscompmgd/Microsoft.CSharp/TODOAttribute.cs b/mcs/class/Cscompmgd/Microsoft.CSharp/TODOAttribute.cs
new file mode 100644 (file)
index 0000000..c35f15f
--- /dev/null
@@ -0,0 +1,33 @@
+//
+// TODOAttribute.cs
+//
+// Author:
+//   Ravi Pratap (ravi@ximian.com)
+//
+// (C) Ximian, Inc.  http://www.ximian.com
+//
+using System;
+
+namespace Microsoft.CSharp {
+
+       /// <summary>
+       ///   The TODO attribute is used to flag all incomplete bits in our class libraries
+       /// </summary>
+       ///
+       /// <remarks>
+       ///   Use this to decorate any element which you think is not complete
+       /// </remarks>
+       [AttributeUsage (AttributeTargets.All)]
+       internal class MonoTODOAttribute : Attribute {
+
+               string comment;
+
+               public MonoTODOAttribute ()
+               {}
+
+               public MonoTODOAttribute (string comment)
+               {
+                       this.comment = comment;
+               }
+       }
+}