2012-03-24 23:06:51 +00:00
|
|
|
|
using System.IO;
|
2012-03-19 23:57:59 +00:00
|
|
|
|
|
|
|
|
|
namespace Axios.Engine.Interfaces
|
|
|
|
|
{
|
|
|
|
|
interface IAxiosFile
|
|
|
|
|
{
|
|
|
|
|
void WriteData(string data, FileMode mode);
|
|
|
|
|
string ReadData();
|
2012-05-12 23:36:46 +00:00
|
|
|
|
FileStream GetStream(FileMode mode);
|
2012-03-19 23:57:59 +00:00
|
|
|
|
}
|
|
|
|
|
}
|