X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.hpp;h=9d7992e8ceb0f71b2dd6c80c99a63149079007cd;hb=c6b4e925a8c5d855a70ab2815e8bc1c371d5801a;hp=25e6fcc492863f90ac97b2ae23a9a73d3b51a39c;hpb=cbb2e4da8042495531b406f745ee9d9e20448ef6;p=pulseview.git diff --git a/pv/data/decode/row.hpp b/pv/data/decode/row.hpp index 25e6fcc4..9d7992e8 100644 --- a/pv/data/decode/row.hpp +++ b/pv/data/decode/row.hpp @@ -48,6 +48,9 @@ public: const QString class_name() const; int index() const; + bool visible() const; + void set_visible(bool visible); + bool operator<(const Row& other) const; bool operator==(const Row& other) const; @@ -55,6 +58,7 @@ private: int index_; const Decoder* decoder_; const srd_decoder_annotation_row* row_; + bool visible_; }; } // namespace decode