return _row;
}
+int Annotation::pd_index() const
+{
+ return _pd_index;
+}
+
const std::vector<QString>& Annotation::annotations() const
{
return _annotations;
_row = row;
}
+void Annotation::set_pd_index(int pd_index)
+{
+ _pd_index = pd_index;
+}
+
} // namespace decode
} // namespace data
} // namespace pv
uint64_t end_sample() const;
int format() const;
int row() const;
+ int pd_index() const;
const std::vector<QString>& annotations() const;
void set_row(int row);
+ void set_pd_index(int pd_index);
private:
uint64_t _start_sample;
uint64_t _end_sample;
int _format;
int _row;
+ int _pd_index;
std::vector<QString> _annotations;
};