X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.h;h=f1e2ef35975bb30d27015c64d08f51a8b25ef103;hp=64e6db57a0b5462e47d94afa955c8891deff069b;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hpb=619e8bd3c0c2ca5ae059ba2eabdbd3b3f5233d7e diff --git a/pv/data/decode/annotation.h b/pv/data/decode/annotation.h index 64e6db57..f1e2ef35 100644 --- a/pv/data/decode/annotation.h +++ b/pv/data/decode/annotation.h @@ -39,20 +39,13 @@ 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; + uint64_t start_sample_; + uint64_t end_sample_; + int format_; + std::vector annotations_; }; } // namespace decode