Add a couple of attributes -miguel
[mono.git] / mcs / class / corlib / System / FlagsAttribute.cs
diff --git a/mcs/class/corlib/System/FlagsAttribute.cs b/mcs/class/corlib/System/FlagsAttribute.cs
new file mode 100755 (executable)
index 0000000..26e3525
--- /dev/null
@@ -0,0 +1,26 @@
+//
+// System.FlagsAttribute.cs
+//
+// Author:
+//   Miguel de Icaza (miguel@ximian.com)
+//
+// (C) Ximian, Inc.  http://www.ximian.com
+//
+
+namespace System {
+
+       /// <summary>
+       ///   The FlagsAttribute tags enumerations as bitfields.
+       /// </summary>
+       ///
+       /// <remarks>
+       ///   The FlagsAttribute can be used to tag an enumeration to be 
+       ///   a bit field.  This will allow the compiler and visual tools
+       ///   to treat the bits in an enumeration as a set of flags.
+       /// </remarks>
+       public class FlagsAttribute : Attribute {
+
+               // No methods.
+               
+       }
+}