using System.Collections.Generic; namespace JungleDB { public interface TreeOperationLog : IEnumerable { TreeOperationLog add (NodePath _p, NodeOperation _op); TreeOperationLog append (TreeOperationLog _log); int length(); } }