Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Drochak <nickd@mono-cvs.ximian.com>2003-05-15 07:14:31 +0400
committerNick Drochak <nickd@mono-cvs.ximian.com>2003-05-15 07:14:31 +0400
commitcf93f436474ed28765176288f2c69e511c20001e (patch)
treeec0cea8d006a1ad53217b39e161be6d5394fe48a /mcs/class/Mono.Directory.LDAP
parent204f7ba769369cf5c97310469ddaf0334894fc5a (diff)
Fix build. LDAP uses the Todo attribute, so we need a copy here.
svn path=/trunk/mcs/; revision=14589
Diffstat (limited to 'mcs/class/Mono.Directory.LDAP')
-rw-r--r--mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs
new file mode 100644
index 00000000000..575d1f3b86b
--- /dev/null
+++ b/mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs
@@ -0,0 +1,37 @@
+//
+// TODOAttribute.cs
+//
+// Author:
+// Ravi Pratap (ravi@ximian.com)
+//
+// (C) Ximian, Inc. http://www.ximian.com
+//
+
+namespace System {
+
+ /// <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, AllowMultiple=true)]
+ internal class MonoTODOAttribute : Attribute {
+
+ private string comment;
+
+ public MonoTODOAttribute ()
+ {}
+
+ public MonoTODOAttribute (string comment)
+ {
+ this.comment = comment;
+ }
+
+ public string Comment
+ {
+ get { return comment; }
+ }
+ }
+}