diff options
author | sr55 <[email protected]> | 2010-02-27 23:27:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-02-27 23:27:44 +0000 |
commit | 799dda8f0f50fb32720f986c0d7021a86448fe10 (patch) | |
tree | ef30aa32ea7f226d0ff83d43dab28edbf5bdc691 /win/C#/Model | |
parent | 0c69640799aefb9d568bd90a76464c83a291aa7f (diff) |
WinGui:
- One more missing file checked in.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3146 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Model')
-rw-r--r-- | win/C#/Model/ActivityLogMode.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/win/C#/Model/ActivityLogMode.cs b/win/C#/Model/ActivityLogMode.cs new file mode 100644 index 000000000..1ab699ea3 --- /dev/null +++ b/win/C#/Model/ActivityLogMode.cs @@ -0,0 +1,23 @@ +/* ActivityLogMode.cs $
+ This file is part of the HandBrake source code.
+ Homepage: <http://handbrake.fr>.
+ It may be used under the terms of the GNU General Public License. */
+
+namespace Handbrake.Model
+{
+ /// <summary>
+ /// The Log Mode, either scan or encode
+ /// </summary>
+ public enum ActivityLogMode
+ {
+ /// <summary>
+ /// Scan Mode
+ /// </summary>
+ Scan,
+
+ /// <summary>
+ /// Encode mode
+ /// </summary>
+ Encode
+ }
+}
|