Cosmos/source/Cosmos.Kernel.FileSystems/Ext2FS.cs
2008-03-16 08:10:58 +00:00

35 lines
No EOL
943 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Cosmos.Kernel.FileSystems {
public class Ext2FS: BaseFileSystem {
public Ext2FS(Hardware.BlockDevice aBackend)
: base(aBackend) {
}
public override ulong Read(string[] aFile, ulong aStart, ulong aCount, byte[] aBuffer) {
throw new NotImplementedException();
}
public override ulong Write(string[] aFile, ulong aStart, ulong aCount, byte[] aBuffer) {
throw new NotImplementedException();
}
public override void DeleteFile(string[] aFile) {
throw new NotImplementedException();
}
public override void CreateFile(string[] aFile) {
throw new NotImplementedException();
}
public override void MoveFile(string[] aSource, string[] aDest) {
throw new NotImplementedException();
}
public override string[] GetDirContents(string[] aDir) {
throw new NotImplementedException();
}
}
}