2023-04-24 15:31:46 +02:00
|
|
|
#include <string>
|
|
|
|
|
2024-07-19 14:01:00 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
2023-04-24 15:31:46 +02:00
|
|
|
class ATBDuration
|
|
|
|
{
|
|
|
|
public:
|
2024-07-19 14:01:00 +02:00
|
|
|
explicit ATBDuration()
|
|
|
|
: pun_id(0)
|
|
|
|
, pun_label("")
|
|
|
|
, pun_duration(0)
|
|
|
|
, pun_duration_min(0)
|
|
|
|
, pun_duration_max(0)
|
|
|
|
, pun_interpolation_id(-1) {
|
|
|
|
}
|
|
|
|
|
|
|
|
friend QDebug operator<<(QDebug debug, ATBDuration const &td) {
|
|
|
|
QDebugStateSaver saver(debug);
|
|
|
|
|
|
|
|
debug.nospace()
|
|
|
|
<< " pun_id: " << td.pun_id << "\n"
|
|
|
|
<< " pun_label: " << QString::fromStdString(td.pun_label) << "\n"
|
|
|
|
<< " pun_duration: " << td.pun_duration << "\n"
|
|
|
|
<< " pun_duration_min: " << td.pun_duration_min << "\n"
|
|
|
|
<< " pun_duration_max: " << td.pun_duration_max << "\n"
|
|
|
|
<< "pun_interpolation_id: " << td.pun_interpolation_id << "\n";
|
|
|
|
|
|
|
|
return debug;
|
|
|
|
}
|
|
|
|
|
2023-04-24 15:31:46 +02:00
|
|
|
int pun_id;
|
|
|
|
std::string pun_label;
|
|
|
|
int pun_duration;
|
2024-01-18 14:41:12 +01:00
|
|
|
int pun_duration_min;
|
|
|
|
int pun_duration_max;
|
2024-07-19 14:01:00 +02:00
|
|
|
int pun_interpolation_id;
|
2024-01-18 14:41:12 +01:00
|
|
|
};
|