2 using System
.Collections
.Generic
;
7 public class Commit
: Treeish
9 protected Tree m_child
;
10 public Tree Child { get { return m_child; }
}
12 List
<Commit
> m_Parents
= new List
<Commit
>();
13 List
<Commit
> Parents { get { return new List<Commit>(m_Parents); }
}
15 public override string Name { get { return "Commit"; }
}
17 public override string ID { get { return m_child.ID; }
}
19 public Commit(string path
) : base(path
)
23 public string Show(string path
)
25 throw new NotImplementedException();
28 public List
<string> Diff(Commit other
)
30 throw new NotImplementedException();