using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace MatrixIO.IO.Bmff.Boxes { /// /// Skip Box ("skip") /// Alternative to the Free Space box. /// [Box("skip", "Skip Box")] public class SkipBox : Box, IContentBox { public SkipBox() : base() { } public SkipBox(Stream stream) : base(stream) { } } }