scm.scmOutputStream Maven / Gradle / Ivy
// simple wrapper around
// a combination of File/Dataoutputstream
package scm;
import java.io.*;
class scmOutputStream extends DataOutputStream
{
scmOutputStream(String path)
throws IOException
{ super(new BufferedOutputStream(new FileOutputStream(path))); }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy