blob: 4fcea5645ca4cf3d15f0436677446c2afdfa86d7 [file] [log] [blame]
package com.googlecode.mp4parser.boxes.apple;
import com.googlecode.mp4parser.AbstractContainerBox;
/**
* Don't know what it is but it is obviously a container box.
*/
public class TaptAtom extends AbstractContainerBox {
public static final String TYPE = "tapt";
public TaptAtom() {
super(TYPE);
}
}