Cosmos/source2/Kernel/System/Cosmos.System/Filesystem/Listing/Base.cs
Trivalik_cp 8cd3d9cf47 GDB Client, change function label to textbox, allows to copy the name
change filesystem to int64, logical error in Read()
fix Ldarg, Ldarga xExtraSize, now should work really 64 bit and greater
2011-06-16 20:56:22 +00:00

23 lines
No EOL
584 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Cosmos.System.Filesystem.Listing {
public abstract class Base {
public readonly FileSystem FileSystem;
public readonly string Name;
public Base(FileSystem aFileSystem, string aName) {
FileSystem = aFileSystem;
Name = aName;
}
// Size might be updated in an ancestor destructor or on demand,
// so its not a readonly field
protected UInt64 mSize;
public virtual UInt64 Size {
get { return mSize; }
}
}
}