Introduced 'pun_duration_saved': to be used when time steps have to be re-calculated.
This commit is contained in:
parent
abf4ef0b00
commit
da05d004dd
@ -9,6 +9,7 @@ public:
|
|||||||
: pun_id(0)
|
: pun_id(0)
|
||||||
, pun_label("")
|
, pun_label("")
|
||||||
, pun_duration(0)
|
, pun_duration(0)
|
||||||
|
, pun_duration_saved(0)
|
||||||
, pun_duration_min(0)
|
, pun_duration_min(0)
|
||||||
, pun_duration_max(0)
|
, pun_duration_max(0)
|
||||||
, pun_interpolation_id(-1) {
|
, pun_interpolation_id(-1) {
|
||||||
@ -21,6 +22,7 @@ public:
|
|||||||
<< " pun_id: " << td.pun_id << "\n"
|
<< " pun_id: " << td.pun_id << "\n"
|
||||||
<< " pun_label: " << QString::fromStdString(td.pun_label) << "\n"
|
<< " pun_label: " << QString::fromStdString(td.pun_label) << "\n"
|
||||||
<< " pun_duration: " << td.pun_duration << "\n"
|
<< " pun_duration: " << td.pun_duration << "\n"
|
||||||
|
<< " pun_duration_saved: " << td.pun_duration_saved << "\n"
|
||||||
<< " pun_duration_min: " << td.pun_duration_min << "\n"
|
<< " pun_duration_min: " << td.pun_duration_min << "\n"
|
||||||
<< " pun_duration_max: " << td.pun_duration_max << "\n"
|
<< " pun_duration_max: " << td.pun_duration_max << "\n"
|
||||||
<< "pun_interpolation_id: " << td.pun_interpolation_id << "\n";
|
<< "pun_interpolation_id: " << td.pun_interpolation_id << "\n";
|
||||||
@ -31,6 +33,7 @@ public:
|
|||||||
int pun_id;
|
int pun_id;
|
||||||
std::string pun_label;
|
std::string pun_label;
|
||||||
int pun_duration;
|
int pun_duration;
|
||||||
|
int pun_duration_saved;
|
||||||
int pun_duration_min;
|
int pun_duration_min;
|
||||||
int pun_duration_max;
|
int pun_duration_max;
|
||||||
int pun_interpolation_id;
|
int pun_interpolation_id;
|
||||||
|
Loading…
Reference in New Issue
Block a user