axiosengine/axios/Engine/File/AxiosFile.cs
Nathan Adams 01748bc5f8 Fixing axios log flag detection
Adding dispose methods to AxiosFile objects
Adding extended log to AxiosLog
Fixing issue in CommandConsole where the first line would not be displayed
Adding commands to commandconsole
2015-01-02 20:14:38 -06:00

40 lines
819 B
C#

using System;
using System.IO;
using Axios.Engine.Interfaces;
namespace Axios.Engine.File
{
public class AxiosFile : IAxiosFile
{
protected string _content;
protected bool disposed = false;
public String Content
{
get { return _content; }
protected set { this._content = value; }
}
protected string _filename;
public virtual void WriteData(string data, FileMode mode)
{
throw new NotImplementedException();
}
public virtual string ReadData()
{
throw new NotImplementedException();
}
public virtual Stream GetStream(FileMode mode)
{
throw new NotImplementedException();
}
}
}