using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Security.AccessControl; using System.Text; using System.Threading.Tasks; using Microsoft.Win32.SafeHandles; namespace ShiftOS.Engine.ShiftFS { /// /// To be implemented /// class ShiftFileStream : Stream { public ShiftFileStream() => throw new NotImplementedException(); /// public override void Flush() => throw new NotImplementedException(); /// public override long Seek(long offset, SeekOrigin origin) => throw new NotImplementedException(); /// public override void SetLength(long value) => throw new NotImplementedException(); /// public override int Read(byte[] buffer, int offset, int count) => throw new NotImplementedException(); /// public override void Write(byte[] buffer, int offset, int count) => throw new NotImplementedException(); /// public override bool CanRead { get; } /// public override bool CanSeek { get; } /// public override bool CanWrite { get; } /// public override long Length { get; } /// public override long Position { get; set; } } }