FileInput.hx 236 B

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