Skip to content
Snippets Groups Projects
Select Git revision
  • cb132a06d1b4c281f40016318d03d4f7b7e378f8
  • main default protected
  • assembleCode
  • 2Clibs
4 results

main.cpp

Blame
  • Decoder.java 646 B
    package se.lth.control.labcomm2006;
    
    import java.io.IOException;
    
    public interface Decoder {
      
      public void register(SampleDispatcher dispatcher, 
    		       SampleHandler handler) throws IOException;
      public boolean decodeBoolean() throws IOException;
      public byte decodeByte() throws IOException;
      public short decodeShort() throws IOException;
      public int decodeInt() throws IOException;
      public long decodeLong() throws IOException;
      public float decodeFloat() throws IOException;
      public double decodeDouble() throws IOException;
      public String decodeString() throws IOException;
      public int decodePacked32() throws IOException;
    
    }