#9: add file handler factory

pull/26/head
Simon Gockner 6 years ago
parent 9a7ad8a93e
commit 4596640373
  1. 19
      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
{
/// <summary>
/// Factory for the <see cref="IFileHandler"/>
/// </summary>
internal interface IFileHandlerFactory
{
/// <summary>
/// Creates an <see cref="IFileHandler"/>
/// </summary>
/// <returns>A newly created instance of the implementation for <see cref="IFileHandler"/></returns>
IFileHandler Create();
}
}
Loading…
Cancel
Save