From 97722fbe9d474adffbba0b92e9727c48a8205234 Mon Sep 17 00:00:00 2001 From: John T Date: Sat, 11 Nov 2017 08:53:55 -0500 Subject: Only 1/4 broken ShiftFS and WIP File Skimmer --- ShiftOS.Engine/ShiftFS/ShiftFileStream.cs | 49 +++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 ShiftOS.Engine/ShiftFS/ShiftFileStream.cs (limited to 'ShiftOS.Engine/ShiftFS/ShiftFileStream.cs') diff --git a/ShiftOS.Engine/ShiftFS/ShiftFileStream.cs b/ShiftOS.Engine/ShiftFS/ShiftFileStream.cs new file mode 100644 index 0000000..9d81a28 --- /dev/null +++ b/ShiftOS.Engine/ShiftFS/ShiftFileStream.cs @@ -0,0 +1,49 @@ +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; } + } +} -- cgit v1.2.3