| 172 | } |
| 173 | |
| 174 | void mitk::EventRecorder::StopRecording() |
| 175 | { |
| 176 | if (m_FileStream.is_open()) |
| 177 | { |
| 178 | // write end tag |
| 179 | // </events> |
| 180 | // </interactions> |
| 181 | WriteEventXMLClose(m_FileStream); |
| 182 | |
| 183 | m_FileStream.flush(); |
| 184 | m_FileStream.close(); |
| 185 | |
| 186 | m_Active = false; |
| 187 | } |
| 188 | } |
nothing calls this directly
no test coverage detected