2007-05-29 00:42:00 +00:00
|
|
|
/*
|
2008-03-04 05:13:15 +00:00
|
|
|
* $Id: Pipe.java 115 2008-03-03 11:13:15Z baconevi $
|
2007-11-03 23:35:00 +00:00
|
|
|
*
|
|
|
|
* {License}
|
2007-05-29 00:42:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package ase.awk;
|
|
|
|
|
|
|
|
public class Pipe extends IO
|
|
|
|
{
|
|
|
|
public static final int MODE_READ = Extio.MODE_PIPE_READ;
|
|
|
|
public static final int MODE_WRITE = Extio.MODE_PIPE_WRITE;
|
|
|
|
|
|
|
|
protected Pipe (Awk awk, Extio extio)
|
|
|
|
{
|
|
|
|
super (awk, extio);
|
|
|
|
}
|
|
|
|
}
|