Ejemplo n.º 1
0
 public Snapshot(ISnapshot snapshot)
 {
     this.root     = snapshot.GetRoot();
     this.previous = snapshot;
     snapshot.SetNext(this);
     lock (this)
     {
         this.db = new HashDB();
     }
 }