diff --git a/GBase/Interfaces/FileHandling/Factories/IFileHandlerFactory.cs b/GBase/Interfaces/FileHandling/Factories/IFileHandlerFactory.cs new file mode 100644 index 0000000..65245e7 --- /dev/null +++ b/GBase/Interfaces/FileHandling/Factories/IFileHandlerFactory.cs @@ -0,0 +1,19 @@ +// Author: Gockner, Simon +// Created: 2020-02-12 +// Copyright(c) 2020 SimonG. All Rights Reserved. + + +namespace GBase.Interfaces.FileHandling.Factories +{ + /// + /// Factory for the + /// + internal interface IFileHandlerFactory + { + /// + /// Creates an + /// + /// A newly created instance of the implementation for + IFileHandler Create(); + } +} \ No newline at end of file