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
|
|
|
|
|
{
|
|
|
|
|
//Check if the opened file stream should be disposed after loading
|
2019-08-01 01:45:03 +02:00
|
|
|
|
public interface ILeaveOpenOnLoad
|
2019-08-01 01:33:45 +02:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|