HART  0.1.0
High level Audio Regression and Testing
Loading...
Searching...
No Matches
hart_matcher_failure_details.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace hart
6{
7
8/// @brief Details about matcher failure
9/// @see Matcher::getFailureDetails()
10/// @ingroup Matchers
12{
13 size_t frame = 0; ///< Index of frame at which the match has failed
14 size_t channel = 0; ///< Index of channel at which the failure was detected
15 std::string description; ///< Readable description of why the match has failed.
16};
17
18} // namespace hart
size_t channel
Index of channel at which the failure was detected.
std::string description
Readable description of why the match has failed.
size_t frame
Index of frame at which the match has failed.