13 lines
243 B
C#
13 lines
243 B
C#
// Copyright (c) 2007-2016 CSJ2K contributors.
|
|
// Licensed under the BSD 3-Clause License.
|
|
|
|
namespace CSJ2K.Util
|
|
{
|
|
using System.IO;
|
|
|
|
public interface IFileStreamCreator
|
|
{
|
|
Stream Create(string path, string mode);
|
|
}
|
|
}
|