ISuperBox.cs 361 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. namespace MatrixIO.IO.Bmff
  7. {
  8. /// <summary>
  9. /// Identifies a Container (BMFF) or SuperBox (JPEG200) that contains child Boxes.
  10. /// </summary>
  11. public interface ISuperBox : IEnumerable<Box>
  12. {
  13. IList<Box> Children { get; }
  14. }
  15. }