X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.hpp;h=34bb2373e844babd768335d4d8a335a227696b0c;hb=0df28cd5a727c5e4ff2c46e3258b76936bc0c33d;hp=8105887450fcab824772fb050eb43da150e40ca8;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/data/decode/row.hpp b/pv/data/decode/row.hpp index 8105887..34bb237 100644 --- a/pv/data/decode/row.hpp +++ b/pv/data/decode/row.hpp @@ -36,23 +36,26 @@ 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_; }; -} // decode -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv #endif // PULSEVIEW_PV_DATA_DECODE_ROW_HPP