| 5594 | class TrackerBase : public ITracker { |
| 5595 | protected: |
| 5596 | enum CycleState { |
| 5597 | NotStarted, |
| 5598 | Executing, |
| 5599 | ExecutingChildren, |
| 5600 | NeedsAnotherRun, |
| 5601 | CompletedSuccessfully, |
| 5602 | Failed |
| 5603 | }; |
| 5604 | |
| 5605 | using Children = std::vector<ITrackerPtr>; |
| 5606 | NameAndLocation m_nameAndLocation; |
nothing calls this directly
no outgoing calls
no test coverage detected