19 lines
266 B
C#
19 lines
266 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace CPF.ReoGrid.Utility
|
|
{
|
|
internal interface IZipArchive
|
|
{
|
|
IZipEntry GetFile(string path);
|
|
|
|
IZipEntry AddFile(string path, Stream stream = null);
|
|
|
|
bool IsFileExist(string path);
|
|
|
|
void Flush();
|
|
|
|
void Close();
|
|
}
|
|
}
|