Tools.h++ 7.0 User's Guide
 fm.SeekTo(fm.start()); // Recover locations of root nodes
 fm.Read(rootArray, 3);
 for (int itree=0; itree<3; itree++)
 {
 // Initialize the three trees:
 treeArray[itree] = new RWBTreeOnDisk(fm,
 10, // Max. nodes cached
 RWBTreeOnDisk::autoCreate, // Will read old tree
 16, // Key length
 FALSE, // Do not ignore nulls
 rootArray[itree] // Location of root
 );
 }
 .
 .
 .
 for (itree=0; itree<3; itree++) // Free heap memory
 delete treeArray[itree];
 return 0;
}










