diff options
| author | John T <[email protected]> | 2017-11-11 08:53:55 -0500 |
|---|---|---|
| committer | John T <[email protected]> | 2017-11-11 08:53:55 -0500 |
| commit | 97722fbe9d474adffbba0b92e9727c48a8205234 (patch) | |
| tree | 65dfe45bbfd194ddb534cc80107ab8e6d80cf5bc /ShiftOS.Engine/ShiftFS/ShiftFileStream.cs | |
| parent | a10440a45c40652b13e883aec832a0c8ded685e8 (diff) | |
| download | shiftos-rewind-97722fbe9d474adffbba0b92e9727c48a8205234.tar.gz shiftos-rewind-97722fbe9d474adffbba0b92e9727c48a8205234.tar.bz2 shiftos-rewind-97722fbe9d474adffbba0b92e9727c48a8205234.zip | |
Only 1/4 broken ShiftFS and WIP File Skimmer
Diffstat (limited to 'ShiftOS.Engine/ShiftFS/ShiftFileStream.cs')
| -rw-r--r-- | ShiftOS.Engine/ShiftFS/ShiftFileStream.cs | 49 |
1 files changed, 49 insertions, 0 deletions
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 +{ + /// <summary> + /// To be implemented + /// </summary> + class ShiftFileStream : Stream + { + public ShiftFileStream() => throw new NotImplementedException(); + + /// <inheritdoc /> + public override void Flush() => throw new NotImplementedException(); + + /// <inheritdoc /> + public override long Seek(long offset, SeekOrigin origin) => throw new NotImplementedException(); + + /// <inheritdoc /> + public override void SetLength(long value) => throw new NotImplementedException(); + + /// <inheritdoc /> + public override int Read(byte[] buffer, int offset, int count) => throw new NotImplementedException(); + + /// <inheritdoc /> + public override void Write(byte[] buffer, int offset, int count) => throw new NotImplementedException(); + + /// <inheritdoc /> + public override bool CanRead { get; } + + /// <inheritdoc /> + public override bool CanSeek { get; } + + /// <inheritdoc /> + public override bool CanWrite { get; } + + /// <inheritdoc /> + public override long Length { get; } + + /// <inheritdoc /> + public override long Position { get; set; } + } +} |
