diff options
author | brianmario <[email protected]> | 2007-07-18 17:40:13 +0000 |
---|---|---|
committer | brianmario <[email protected]> | 2007-07-18 17:40:13 +0000 |
commit | cdac5d3a33743512011783afc9dd7f90c4f3a762 (patch) | |
tree | de665fe36440d25486f240148c10a5dee250709a /win/C#/Parsing/DVD.cs | |
parent | b369e49dd79586f06af713ae4398f8e7c6c3eb6e (diff) |
WinGui:
added some more source comments
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@710 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing/DVD.cs')
-rw-r--r-- | win/C#/Parsing/DVD.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/win/C#/Parsing/DVD.cs b/win/C#/Parsing/DVD.cs index ef6586e39..1c2e0d0e7 100644 --- a/win/C#/Parsing/DVD.cs +++ b/win/C#/Parsing/DVD.cs @@ -7,9 +7,15 @@ using System.Windows.Forms; namespace Handbrake.Parsing
{
+ /// <summary>
+ /// An object representing a scanned DVD
+ /// </summary>
public class DVD
{
private List<Title> m_titles;
+ /// <summary>
+ /// Collection of Titles associated with this DVD
+ /// </summary>
public List<Title> Titles
{
get
@@ -18,6 +24,9 @@ namespace Handbrake.Parsing }
}
+ /// <summary>
+ /// Default constructor for this object
+ /// </summary>
public DVD()
{
this.m_titles = new List<Title>();
|