view Main/jungle-main/store/impl/logger/TreeOperationLog.cs @ 41:bd44baa491a9 default tip

add TestJungleCore.cs
author Kazuma Takeda
date Thu, 23 Feb 2017 17:19:55 +0900
parents 1f99e150f336
children
line wrap: on
line source

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