19 lines
521 B
C#
19 lines
521 B
C#
using System;
|
|
using System.IO;
|
|
using System.Text;
|
|
using CPF.ReoGrid.IO;
|
|
|
|
namespace CPF.ReoGrid.Main
|
|
{
|
|
internal interface IPersistenceWorkbook
|
|
{
|
|
void Save(string path, FileFormat format = FileFormat._Auto, Encoding encoding = null);
|
|
|
|
void Save(Stream stream, FileFormat format = FileFormat._Auto, Encoding encoding = null);
|
|
|
|
void Load(string path, FileFormat format = FileFormat._Auto, Encoding encoding = null);
|
|
|
|
void Load(Stream stream, FileFormat format = FileFormat._Auto, Encoding encoding = null);
|
|
}
|
|
}
|