iRiver: The audio init fix caused problems if a voice file was present.
[kugel-rb.git] / songdbj / Entry.java
blob19ead66c0601d96d559490f4ad74561e2acf15c1
1 import java.io.*;
3 public abstract class Entry {
4 protected int offset;
6 public Entry() {
7 offset=-1;
10 public void setOffset(int pos) { offset=pos; }
11 public int getOffset() { return offset; }
13 public abstract void write(DataOutputStream w) throws IOException;