summaryrefslogtreecommitdiff
path: root/isoparser/src/main/java/com/coremedia/iso/boxes/WriteListener.java
blob: dc22d52bc74d1ba0c2861ed9029552699117067b (plain)
1
2
3
4
5
6
7
8
9
10
package com.coremedia.iso.boxes;

/**
 * The <class>WriteListener</class> is used to get the offset of
 * a box before writing the box. This can be used if a box written
 * later needs an offset.
 */
public interface WriteListener {
    public void beforeWrite(long offset);
}