X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.hpp;h=2411d4f61afaa2344660429fc2b76348f034a269;hp=6413e78808bb0de907c83a89c5e0e6073a060e89;hb=f98070844c2d468fdbb6beb5b65e4ccbbcd3f10b;hpb=7a01bd3654ed046216308fa64edfd79be7cd525f diff --git a/pv/data/decode/row.hpp b/pv/data/decode/row.hpp index 6413e78..2411d4f 100644 --- a/pv/data/decode/row.hpp +++ b/pv/data/decode/row.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_DATA_DECODE_ROW_HPP @@ -37,23 +36,25 @@ class Row public: Row(); - Row(const srd_decoder *decoder, - const srd_decoder_annotation_row *row = NULL); + 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; + 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