using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace MatrixIO.IO.Bmff.Boxes
{
///
/// Movie Fragment Box ("moof")
///
[Box("moof", "Movie Fragment Box")]
public class MovieFragmentBox : Box, ISuperBox
{
public MovieFragmentBox() : base() { }
public MovieFragmentBox(Stream stream) : base(stream) { }
private IList _Children = Portability.CreateList();
public IList Children
{
get { return _Children; }
}
public IEnumerator GetEnumerator()
{
return Children.GetEnumerator();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return Children.GetEnumerator();
}
}
}