using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace MatrixIO.IO.Bmff.Boxes
{
///
/// Sample Table Box ("stbl")
///
[Box("stbl", "Sample Table Box")]
public class SampleTableBox : Box, ISuperBox
{
public SampleTableBox() : base() { }
public SampleTableBox(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();
}
}
}