|
package pr2.io.compressor;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
/**
|
|
* Stream that automatically decompresses data that was compressed
|
|
* with the {@link CompressingOutputStream}.
|
|
*/
|
|
public class DecompressingInputStream {
|
|
|
|
// TODO: Klasse implementieren
|
|
}
|