OSDN Git Service

LinGui: make Help->Guide work on windows/mingw
[handbrake-jp/handbrake-jp-git.git] / win / C# / Presets / Preset.cs
index ef64387..bf41e47 100644 (file)
@@ -1,37 +1,39 @@
 /*  Preset.cs $\r
-       \r
-          This file is part of the HandBrake source code.\r
-          Homepage: <http://handbrake.fr>.\r
-          It may be used under the terms of the GNU General Public License. */\r
+    This file is part of the HandBrake source code.\r
+    Homepage: <http://handbrake.fr>.\r
+    It may be used under the terms of the GNU General Public License. */\r
 \r
 namespace Handbrake.Presets\r
 {\r
-    using System;\r
+    using System.Windows.Controls;\r
 \r
-    public class Preset\r
+    /// <summary>\r
+    /// A Preset\r
+    /// </summary>\r
+    public class Preset \r
     {\r
         /// <summary>\r
-        /// Get or Set the category which the preset resides under\r
+        /// Gets or sets the category which the preset resides under\r
         /// </summary>\r
         public string Category { get; set; }\r
 \r
         /// <summary>\r
-        /// Get or Set the preset name\r
+        /// Gets or sets the preset name\r
         /// </summary>\r
         public string Name { get; set; }\r
 \r
         /// <summary>\r
-        /// Get or set the preset query\r
+        /// Gets or sets the preset query\r
         /// </summary>\r
         public string Query { get; set; }\r
 \r
         /// <summary>\r
-        /// Get or set the usage of Picture Settings in presets.\r
+        /// Gets or sets a value indicating whether to use picture Settings in presets.\r
         /// </summary>\r
         public bool PictureSettings { get; set; }\r
 \r
         /// <summary>\r
-        /// The version number which associates this preset with a HB build\r
+        /// Gets or sets The version number which associates this preset with a HB build\r
         /// </summary>\r
         public string Version { get; set; }\r
     }\r