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