From 40ecc595bd9d99d884783abb4be1ab53e1948f1f Mon Sep 17 00:00:00 2001 From: Paolo Molaro Date: Mon, 5 Aug 2002 08:59:42 +0000 Subject: [PATCH] Commit to fix compilation. svn path=/trunk/mcs/; revision=6407 --- .../TODOAttribute.cs | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100755 mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs diff --git a/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs b/mcs/class/System.EnterpriseServices/System.EnterpriseServices/TODOAttribute.cs new file mode 100755 index 00000000000..0920ce8f92d --- /dev/null +++ b/mcs/class/System.EnterpriseServices/System.EnterpriseServices/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)] + public class MonoTODOAttribute : Attribute { + + private string comment; + + public MonoTODOAttribute () + {} + + public MonoTODOAttribute (string comment) + { + this.comment = comment; + } + + public string Comment + { + get { return comment; } + } + } +} -- 2.25.1