comparison Main/jungle-main/store/TreeContext.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 
2 namespace JungleDB {
3 public interface TreeContext {
4 TreeNode getRoot();
5
6 TreeContext prev();
7
8 string getUuid();
9
10 string getTreeName();
11
12 long getRevision();
13
14 TreeMap<string, TreeMap<string, List<TreeNode>>> getIndex();
15
16 // Iterable<TreeOperation> getOperations();
17
18 // ParentIndex getParentIndex(); do not use, in the game.
19
20 InterfaceTraverser getTraverser();
21 }
22 }