slcom/slangc/streams/FileOutput.sauce

17 lines
353 B
Plaintext

package slangc.streams;
import slang.streams.SyncOutput;
public class FileOutput implements SyncOutput<byte> {
private VFS vfs;
private String path;
protected FileInput(VFS vfs, String path) {
this.vfs = vfs;
this.path = path;
}
public void close() {
throw new Error("TODO:close");
}
}