package java.io;

public abstract class OutputStream
{

 public OutputStream()
 {
 }
 
 public abstract void write(int int_1) throws IOException;
 
 public void write(byte[] bytes_1) throws IOException
 {
 }
 
 public void write(byte[] bytes_1, int int_1, int int_2) throws IOException
 {
 }
 
 public void flush() throws IOException
 {
 }
 
 public void close() throws IOException
 {
 }
 
}