comparison Main/jungle-main/store/impl/logger/TreeOperationLog.cs @ 20:1f99e150f336

fix folder and add Object Mapper.
author Kazuma Takeda
date Thu, 15 Dec 2016 22:52:48 +0900
parents
children
comparison
equal deleted inserted replaced
19:0865819106cf 20:1f99e150f336
1 using System.Collections.Generic;
2 namespace JungleDB {
3 public interface TreeOperationLog : IEnumerable<TreeOperation> {
4 TreeOperationLog add (NodePath _p, NodeOperation _op);
5 TreeOperationLog append (TreeOperationLog _log);
6 int length();
7 }
8 }