\brief Set the ErrorRecorder for this interface Assigns the ErrorRecorder to this interface. The ErrorRecorder will track all errors during execution. This function will call incRefCount of the registered ErrorRecorder at least once. Setting recorder to nullptr unregisters the recorder with the interface, resulting in a call to decRefCount if a recorder has been registered. If an error recorder
| 749 | //! \see getErrorRecorder() |
| 750 | //! |
| 751 | void setErrorRecorder(IErrorRecorder* recorder) noexcept |
| 752 | { |
| 753 | mImpl->setErrorRecorder(recorder); |
| 754 | } |
| 755 | |
| 756 | //! |
| 757 | //! \brief get the ErrorRecorder assigned to this interface. |
no outgoing calls
no test coverage detected