| 17 | } |
| 18 | |
| 19 | bool FPCGExMergePointsElement::Boot(FPCGExContext* InContext) const |
| 20 | { |
| 21 | if (!FPCGExPointsProcessorElement::Boot(InContext)) { return false; } |
| 22 | |
| 23 | PCGEX_CONTEXT_AND_SETTINGS(MergePoints) |
| 24 | |
| 25 | PCGEX_FWD(SortingDetails) |
| 26 | if (!Context->SortingDetails.Init(Context)) { return false; } |
| 27 | |
| 28 | Context->SortingDetails.Sort(Context, Context->MainPoints); |
| 29 | |
| 30 | PCGEX_FWD(CarryOverDetails) |
| 31 | Context->CarryOverDetails.Init(); |
| 32 | |
| 33 | PCGEX_FWD(TagsToAttributes) |
| 34 | Context->TagsToAttributes.Init(); |
| 35 | |
| 36 | return true; |
| 37 | } |
| 38 | |
| 39 | bool FPCGExMergePointsElement::ExecuteInternal(FPCGContext* InContext) const |
| 40 | { |