OSDN Git Service

CLI: update the built in presets
[handbrake-jp/handbrake-jp-git.git] / win / C# / Model / SourceType.cs
index c5a1bf4..2081ce9 100644 (file)
@@ -1,31 +1,33 @@
 /*  SourceType.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.Model\r
 {\r
+    /// <summary>\r
+    /// The Type of source that the user has scanned\r
+    /// </summary>\r
     public enum SourceType\r
     {\r
         /// <summary>\r
         /// No Source Selected\r
         /// </summary>\r
-        None = 0,\r
+        None = 0, \r
 \r
         /// <summary>\r
         /// The soruce selected is a folder\r
         /// </summary>\r
-        Folder,\r
+        Folder, \r
 \r
         /// <summary>\r
         /// The source selected is a DVD drive\r
         /// </summary>\r
-        DvdDrive,\r
+        DvdDrive, \r
 \r
         /// <summary>\r
         /// The source selected is a Video File\r
         /// </summary>\r
         VideoFile\r
     }\r
-}\r
+}
\ No newline at end of file