using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace MatrixIO.IO.Bmff { /// /// Identifies a Container (BMFF) or SuperBox (JPEG200) that contains child Boxes. /// public interface ISuperBox : IEnumerable { IList Children { get; } } }