79 typedef VHierarchyNodeHandleList::iterator VHierarchyNodeHandleListIter;
80 enum VHierarchyNodeStatus { kSplit, kActive, kCollapse };
83 VHierarchyNodeHandleListIter front_it_;
84 std::vector<VHierarchyNodeHandleListIter> front_location_;
90 void clear() { front_.clear(); front_location_.clear(); }
91 void begin() { front_it_ = front_.begin(); }
92 bool end() {
return (front_it_ == front_.end()) ? true :
false; }
93 void next() { ++front_it_; }
94 int size() {
return (
int) front_.size(); }