/* DVD.cs $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using System.IO;
namespace Handbrake.Parsing
{
///
/// An object representing a scanned DVD
///
public class DVD
{
private List
m_titles;
///
/// Collection of Titles associated with this DVD
///
public List Titles
{
get
{
return this.m_titles;
}
}
///
/// Default constructor for this object
///
public DVD()
{
this.m_titles = new List();
}
public static DVD Parse(StreamReader output)
{
DVD thisDVD = new DVD();
try
{
while (!output.EndOfStream)
{
if ((char)output.Peek() == '+')
thisDVD.m_titles.AddRange(Title.ParseList(output.ReadToEnd()));
else
output.ReadLine();
}
}
catch (Exception exc)
{
MessageBox.Show("DVD.CS - Parse" + exc.ToString());
}
return thisDVD;
}
}
}