2019-08-01 01:33:45 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
2019-08-06 23:35:18 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Allows an <see cref="IFileFormat"/> to keep it's stream open after being loaded
|
|
|
|
|
/// </summary>
|
2019-08-01 01:45:03 +02:00
|
|
|
|
public interface ILeaveOpenOnLoad
|
2019-08-01 01:33:45 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|