package P9P.type;
import java.io.*;
public class qid9P extends type9P {
public byte9P type=new byte9P();
public int9P vers=new int9P();
public long9P path=new long9P();
private int sz=13;
public qid9P (byte[] b, int i) {
read(b,i);
}
public qid9P () {}
public void read(byte[] b, int i) {
type.read(b,i);
vers.read(b,i+1);
path.read(b,i+5);
}
public void write(ByteArrayOutputStream buf) {
type.write(buf);
vers.write(buf);
path.write(buf);
}
public int len() {
return sz;
}
public String toString() {
return "qid("+type+vers+path+") ";
}
}