FileInput.hx 273 B

1234567891011121314151617
  1. package sys.io;
  2. import python.io.NativeInput;
  3. import python.lib.io.RawIOBase;
  4. import python.lib.io.IOBase.SeekSet;
  5. class FileInput extends NativeInput {
  6. public function new (stream:RawIOBase) {
  7. super(stream);
  8. }
  9. public function eof() {
  10. return false; // TODO
  11. }
  12. }