| 115 | void CollectItem(CollectedItems &collection, BaseItem *Item, |
| 116 | const OrderingHint &hint, void *pComputedItemContext); |
| 117 | void CollectItems(CollectedItems &collection, const GroupItemBase &items, |
| 118 | const OrderingHint &hint, void *pComputedItemContext) |
| 119 | { |
| 120 | for ( auto &item : items ) |
| 121 | CollectItem(collection, item.get(), |
| 122 | ChooseHint(item.get(), hint), pComputedItemContext); |
| 123 | } |
| 124 | void CollectItem(CollectedItems &collection, |
| 125 | BaseItem *pItem, const OrderingHint &hint, void *pComputedItemContext) |
| 126 | { |
no test coverage detected