2 using System
.Collections
.Generic
;
7 public class Tree
: Treeish
9 protected string m_name
;
10 public override string Name { get { return m_name; }
internal set { m_name = value; }
}
12 protected string m_hash
;
13 public override string ID { get { return m_hash; }
internal set { m_hash = value; }
}
15 public Tree(string path
) : base(path
)