diff --git a/GBase/FileHandling/FileHandler.cs b/GBase/FileHandling/FileHandler.cs new file mode 100644 index 0000000..89697d8 --- /dev/null +++ b/GBase/FileHandling/FileHandler.cs @@ -0,0 +1,36 @@ +// Author: Gockner, Simon +// Created: 2020-02-12 +// Copyright(c) 2020 SimonG. All Rights Reserved. + +using System.Threading; +using System.Threading.Tasks; +using GBase.Interfaces.FileHandling; + +namespace GBase.FileHandling +{ + /// + /// Internal file handler + /// + public class FileHandler : IFileHandler + { + /// + /// Initialize this + /// + /// The path of the database + /// A to cancel the asynchronous operation + /// True if successful, false if not + public async Task Init(string path, CancellationToken cancellationToken) + { + throw new System.NotImplementedException(); + } + + /// + /// Dispose used resources asynchronously + /// + /// A to await + public async ValueTask DisposeAsync() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file