# Copyright (c) 2023 Yuki Kimoto
# MIT License

class Sys::IO::FileStream : pointer {
  version_from Sys;
  # Fields
  has closed : ro byte;
  
  has is_pipe : ro byte;
  
  has no_destroy : ro byte;
  
  # Instance Methods
  native method DESTROY : void ();
}