| 102 | } |
| 103 | |
| 104 | mitk::EventConfigPrivate::EventConfigPrivate() |
| 105 | : m_PropertyList(PropertyList::New()), m_EventPropertyList(PropertyList::New()), m_Errors(false), m_XmlParser(this) |
| 106 | { |
| 107 | // Avoid VTK warning: Trying to delete object with non-zero reference count. |
| 108 | m_XmlParser.SetReferenceCount(0); |
| 109 | } |
| 110 | |
| 111 | mitk::EventConfigPrivate::EventConfigPrivate(const EventConfigPrivate &other) |
| 112 | : us::SharedData(other), |
nothing calls this directly
no test coverage detected