diff options
author | sr55 <[email protected]> | 2010-01-31 14:40:06 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2010-01-31 14:40:06 +0000 |
commit | aa24522a3739ba995cb0890004e448c4d741b292 (patch) | |
tree | 87b6d611617f6a3f34c7d960e0dc63ed36d8228c /win/C#/Parsing | |
parent | 138ea1180443c3b73b81e47da016a54bf133f133 (diff) |
WinGui:
- More refactoring.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3092 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/Title.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index b588e6433..e13858fd3 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -74,6 +74,9 @@ namespace Handbrake.Parsing get { return m_titleNumber; }
}
+ /// <summary>
+ /// Source Name
+ /// </summary>
public string SourceName
{
get { return source; }
@@ -150,6 +153,11 @@ namespace Handbrake.Parsing m_duration.Minutes, m_duration.Seconds);
}
+ /// <summary>
+ /// Parse the Title Information
+ /// </summary>
+ /// <param name="output"></param>
+ /// <returns></returns>
public static Title Parse(StringReader output)
{
var thisTitle = new Title();
@@ -216,6 +224,11 @@ namespace Handbrake.Parsing return thisTitle;
}
+ /// <summary>
+ /// Return a list of parsed titles
+ /// </summary>
+ /// <param name="output"></param>
+ /// <returns></returns>
public static Title[] ParseList(string output)
{
var titles = new List<Title>();
|