------------------------------------------------------------------------------
| 242 | |
| 243 | //------------------------------------------------------------------------------ |
| 244 | void vtkInteractorEventRecorder::Clear() |
| 245 | { |
| 246 | this->Stop(); |
| 247 | |
| 248 | if (this->InputStream) |
| 249 | { |
| 250 | this->InputStream->clear(); |
| 251 | delete this->InputStream; |
| 252 | this->InputStream = nullptr; |
| 253 | } |
| 254 | |
| 255 | if (this->OutputStream) |
| 256 | { |
| 257 | delete this->OutputStream; |
| 258 | this->OutputStream = nullptr; |
| 259 | } |
| 260 | |
| 261 | this->Modified(); |
| 262 | } |
| 263 | |
| 264 | //------------------------------------------------------------------------------ |
| 265 | void vtkInteractorEventRecorder::Rewind() |
no test coverage detected