X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.h;h=64e6db57a0b5462e47d94afa955c8891deff069b;hb=d2899ad580eea569f3b167e8c9ebcb913194c6b6;hp=0d7fd5d5e59441e8ed9a81d7993fe7fa97340d47;hpb=06e810f29b6e9e3fe8ba8aba5d3823375da9bbb2;p=pulseview.git diff --git a/pv/data/decode/annotation.h b/pv/data/decode/annotation.h index 0d7fd5d..64e6db5 100644 --- a/pv/data/decode/annotation.h +++ b/pv/data/decode/annotation.h @@ -39,12 +39,19 @@ public: uint64_t start_sample() const; uint64_t end_sample() const; int format() const; + int row() const; + int pd_index() const; const std::vector& 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 _annotations; };