X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frow.cpp;h=8195f3e2d00f023c0cdfb91f4b0464c8065d5eab;hb=1ed996b433f3391f54846784d76da4fe6b07500f;hp=ca16ae69fd0d496d7be33bb3e2cb73ea49d2ce1e;hpb=744aa24fc5a7084461e4e70595b96f1c3eac65e4;p=pulseview.git diff --git a/pv/data/decode/row.cpp b/pv/data/decode/row.cpp index ca16ae6..8195f3e 100644 --- a/pv/data/decode/row.cpp +++ b/pv/data/decode/row.cpp @@ -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 . */ #include "row.hpp" @@ -32,7 +31,8 @@ Row::Row() : { } -Row::Row(const srd_decoder *decoder, const srd_decoder_annotation_row *row) : +Row::Row(int index, const srd_decoder *decoder, const srd_decoder_annotation_row *row) : + index_(index), decoder_(decoder), row_(row) { @@ -61,12 +61,24 @@ const QString Row::title() const return QString(); } +const QString Row::class_name() const +{ + if (row_ && row_->desc) + return QString::fromUtf8(row_->desc); + return QString(); +} + +int Row::index() const +{ + return index_; +} + bool Row::operator<(const Row &other) const { return (decoder_ < other.decoder_) || (decoder_ == other.decoder_ && row_ < other.row_); } -} // decode -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv