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(); } }