HART  0.2.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// TODO: Some reserved const values for "all channels/frames" or "irrelevant" cases
9
10/// @brief Details about matcher failure
11/// @see Matcher::getFailureDetails()
12/// @ingroup Matchers
14{
15 size_t frame = 0; ///< Index of frame at which the match has failed
16 size_t channel = 0; ///< Index of channel at which the failure was detected
17 std::string description; ///< Readable description of why the match has failed.
18};
19
20} // 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.