blob: dab927d2386cee85f7db31a768057851a7b8d8a3 [file] [log] [blame]
package org.eclipse.linuxtools.internal.gprof.parser;
import java.io.DataInput;
import java.io.IOException;
public class HistogramDecoder_64 extends HistogramDecoder {
public HistogramDecoder_64(GmonDecoder decoder) {
super(decoder);
}
@Override
protected long readAddress(DataInput stream) throws IOException {
long ret = stream.readLong();
return ret;
}
}