Cosmos/source2/Kernel/System/Cosmos.System/Filesystem/Listing/File.cs
kudzu_cp 06e5c1fa7b
2011-03-04 01:50:52 +00:00

15 lines
423 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.System.Filesystem.Listing {
public class File : Base {
//TODO:UInt32? Size until ulong works.. nullable types have a problem right now
//TODO:UInt64? Size
public File(FileSystem aFileSystem, string aName, UInt32 aSize)
: base(aFileSystem, aName) {
mSize = aSize;
}
}
}