Minor: add debug output

This commit is contained in:
Gerhard Hoffmann 2024-01-18 14:37:13 +01:00
parent c357cbbbe0
commit 6a781f0d3b

View File

@ -9,6 +9,7 @@ struct ATBTimeBase {
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
ATBTimeBase() = default;
int tbase_id;
TimeBaseType tbase_type;
QString tbase_label;
@ -18,6 +19,7 @@ struct ATBTimeBase {
switch(timeBase.tbase_type) {
case ATBTimeBase::TimeBaseType::ABSOLUTE:
debug.nospace()
<< " tbase_id: " << timeBase.tbase_id << "\n"
<< " tbase_type: " << "TimeBaseType::ABSOLUTE" << "\n"
<< "tbase_label: " << timeBase.tbase_label << "\n";
break;