* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Drawing / System.Drawing.Drawing2D / SmoothingMode.cs
index 52ec14433b7d74f546a656c2f1ca3ff63a8682d3..416aa5c24569581bfdfc2927bb9c87db45cd5ec2 100644 (file)
@@ -1,15 +1,12 @@
-//\r
-// System.Drawing.Drawing2D.SmoothingMode.cs\r
-//\r
-// Author:\r
-//   Stefan Maierhofer <sm@cg.tuwien.ac.at>\r
-//   Dennis Hayes (dennish@Raytek.com)\r
-//\r
-// (C) 2002/3 Ximian, Inc\r
-//\r
-
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// System.Drawing.Drawing2D.SmoothingMode.cs
+//
+// Author:
+//   Stefan Maierhofer <sm@cg.tuwien.ac.at>
+//   Dennis Hayes (dennish@Raytek.com)
+//
+// (C) 2002/3 Ximian, Inc
+// Copyright (C) 2004,2006 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-using System;\r
-\r
-namespace System.Drawing.Drawing2D {\r
-       /// <summary>\r
-       /// Summary description for SmoothingMode.\r
-       /// </summary>\r
-       [Serializable]\r
-       public enum SmoothingMode {\r
-               AntiAlias = 4,\r
-               Default = 0,\r
-               HighQuality = 2,\r
-               HighSpeed = 1,\r
-               Invalid = -1,\r
-               None = 3\r
-       }\r
-}\r
+
+namespace System.Drawing.Drawing2D {
+
+#if ONLY_1_1
+       [Serializable]
+#endif
+       public enum SmoothingMode {
+               AntiAlias = 4,
+               Default = 0,
+               HighQuality = 2,
+               HighSpeed = 1,
+               Invalid = -1,
+               None = 3
+       }
+}