using System; using System.Collections.Generic; using System.Text; namespace ISOParser { /// /// Representation of a file in the file system. /// public class ISOFileNode : ISONode { #region Construction /// /// Constructor. /// /// The record to construct from. public ISOFileNode( ISONodeRecord record ) : base( record ) { // Do Nothing } #endregion } }