From 459664037362b66ca2ee2b357af31429d697048d Mon Sep 17 00:00:00 2001 From: Simon Gockner Date: Wed, 12 Feb 2020 16:20:01 +0100 Subject: [PATCH] #9: add file handler factory --- .../Factories/IFileHandlerFactory.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 GBase/Interfaces/FileHandling/Factories/IFileHandlerFactory.cs 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