X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=ab109001bd96d72441f5f0bff45a150e9266d861;hb=04b0467582d8dfa989bb38fe18bfb1be20cea456;hp=48b6a41a68a260783dd0740b8ac57f63448eb4e9;hpb=f54e68b03d5d24c7787962fcc701d8d52b0ec8ab;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 48b6a41a..ab109001 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -20,14 +20,29 @@ #ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP #define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP +#include #include +#include +#include +#include + #include #include using std::deque; -using std::vector; +using std::unordered_map; + +#if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) +namespace std { + template<> struct hash { + std::size_t operator()(const QString& s) const noexcept { + return (size_t) qHash(s); + } + }; +} +#endif namespace pv { namespace data { @@ -40,6 +55,8 @@ class RowData public: RowData(Row* row); + const Row* row() const; + uint64_t get_max_sample() const; uint64_t get_annotation_count() const; @@ -52,10 +69,13 @@ public: void get_annotation_subset(deque &dest, uint64_t start_sample, uint64_t end_sample) const; + const deque& annotations() const; + const Annotation* emplace_annotation(srd_proto_data *pdata); private: deque annotations_; + unordered_map > ann_texts_; // unordered_map since pointers must not change Row* row_; uint64_t prev_ann_start_sample_; };