* @brief sets the pointers in Transition (setNextState(..)) according to the extracted xml-file content **/
| 82 | * @brief sets the pointers in Transition (setNextState(..)) according to the extracted xml-file content |
| 83 | **/ |
| 84 | void mitk::StateMachineContainer::ConnectStates() |
| 85 | { |
| 86 | for (auto it = m_States.begin(); it != m_States.end(); ++it) |
| 87 | { |
| 88 | if ((*it)->ConnectTransitions(&m_States) == false) |
| 89 | m_errors = true; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | void mitk::StateMachineContainer::StartElement(const char *elementName, const char **atts) |
| 94 | { |
nothing calls this directly
no test coverage detected