2021-01-02 07:34:13 +00:00
|
|
|
|
namespace ISOParser
|
2013-11-03 23:45:44 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Representation of a file in the file system.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class ISOFileNode : ISONode
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Constructor.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="record">The record to construct from.</param>
|
|
|
|
|
public ISOFileNode(ISONodeRecord record)
|
|
|
|
|
: base(record)
|
|
|
|
|
{
|
|
|
|
|
// Do Nothing
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|