Sketcher2 source code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
290 B

package com.jotuntech.sketcher.common;
import java.nio.ByteBuffer;
/**
* Abstract class for streamable objects.
*
* @author Thor Harald Johansen
*/
public interface Streamable {
public abstract void decode(ByteBuffer in);
public abstract void encode(ByteBuffer out);
}