Minor: add debug output
This commit is contained in:
parent
c357cbbbe0
commit
6a781f0d3b
@ -9,6 +9,7 @@ struct ATBTimeBase {
|
|||||||
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
|
enum class TimeBaseType {ABSOLUTE=0, RELATIVE=1};
|
||||||
|
|
||||||
ATBTimeBase() = default;
|
ATBTimeBase() = default;
|
||||||
|
int tbase_id;
|
||||||
TimeBaseType tbase_type;
|
TimeBaseType tbase_type;
|
||||||
QString tbase_label;
|
QString tbase_label;
|
||||||
|
|
||||||
@ -18,6 +19,7 @@ struct ATBTimeBase {
|
|||||||
switch(timeBase.tbase_type) {
|
switch(timeBase.tbase_type) {
|
||||||
case ATBTimeBase::TimeBaseType::ABSOLUTE:
|
case ATBTimeBase::TimeBaseType::ABSOLUTE:
|
||||||
debug.nospace()
|
debug.nospace()
|
||||||
|
<< " tbase_id: " << timeBase.tbase_id << "\n"
|
||||||
<< " tbase_type: " << "TimeBaseType::ABSOLUTE" << "\n"
|
<< " tbase_type: " << "TimeBaseType::ABSOLUTE" << "\n"
|
||||||
<< "tbase_label: " << timeBase.tbase_label << "\n";
|
<< "tbase_label: " << timeBase.tbase_label << "\n";
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user