X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.hpp;h=34bb2373e844babd768335d4d8a335a227696b0c;hb=1ed996b433f3391f54846784d76da4fe6b07500f;hp=5ddd10d3318fb2b0c9e0d399fa8b83915164d45f;hpb=870ea3dbf35b182e120c5d84ab89bf9cb7691232;p=pulseview.git diff --git a/pv/data/decode/row.hpp b/pv/data/decode/row.hpp index 5ddd10d..34bb237 100644 --- a/pv/data/decode/row.hpp +++ b/pv/data/decode/row.hpp @@ -36,17 +36,20 @@ class Row public: Row(); - Row(const srd_decoder *decoder, + Row(int index, const srd_decoder *decoder, const srd_decoder_annotation_row *row = nullptr); const srd_decoder* decoder() const; const srd_decoder_annotation_row* row() const; const QString title() const; + const QString class_name() const; + int index() const; bool operator<(const Row &other) const; private: + int index_; const srd_decoder *decoder_; const srd_decoder_annotation_row *row_; };