X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.h;h=9cacafaeaac0c1ea9a92478f1a01b9e2233c78e2;hp=0d7fd5d5e59441e8ed9a81d7993fe7fa97340d47;hb=3f53457656c72dc870f603677843613b708b4ea1;hpb=8a290daf90a91c998217f34a695a2dad41ea73e1 diff --git a/pv/data/decode/annotation.h b/pv/data/decode/annotation.h index 0d7fd5d5..9cacafae 100644 --- a/pv/data/decode/annotation.h +++ b/pv/data/decode/annotation.h @@ -39,12 +39,16 @@ public: uint64_t start_sample() const; uint64_t end_sample() const; int format() const; + int row() const; const std::vector& annotations() const; + void set_row(int row); + private: uint64_t _start_sample; uint64_t _end_sample; int _format; + int _row; std::vector _annotations; };