| 119 | } |
| 120 | |
| 121 | const StepInfo* StepManager::getStep(step_id_type id) { |
| 122 | const steps_type::const_iterator step = steps().find(id); |
| 123 | if (step == steps().end()) { |
| 124 | return NULL; |
| 125 | } |
| 126 | return step->second.get(); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Needed to fix the "static initialization order fiasco" |