From cf93f436474ed28765176288f2c69e511c20001e Mon Sep 17 00:00:00 2001 From: Nick Drochak Date: Thu, 15 May 2003 03:14:31 +0000 Subject: Fix build. LDAP uses the Todo attribute, so we need a copy here. svn path=/trunk/mcs/; revision=14589 --- .../Mono.Directory.LDAP/TODOAttribute.cs | 37 ++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 mcs/class/Mono.Directory.LDAP/Mono.Directory.LDAP/TODOAttribute.cs (limited to 'mcs/class/Mono.Directory.LDAP') 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 { + + /// + /// The TODO attribute is used to flag all incomplete bits in our class libraries + /// + /// + /// + /// Use this to decorate any element which you think is not complete + /// + [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; } + } + } +} -- cgit v1.2.3