MCPcopy Create free account
hub / github.com/DreamSourceLab/DSView / title_id

Method title_id

DSView/pv/data/decode/row.cpp:76–90  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76QString Row::title_id() const
77{
78 if (_decoder && _decoder->id && _row && _row->desc)
79 return QString("%1: %2")
80 .arg(QString::fromUtf8(_decoder->id))
81 .arg(QString::fromUtf8(_row->desc));
82
83 if (_decoder && _decoder->id)
84 return QString::fromUtf8(_decoder->id);
85
86 if (_row && _row->desc)
87 return QString::fromUtf8(_row->desc);
88
89 return QString();
90}
91
92bool Row::operator<(const Row &other) const
93{

Callers 2

gen_decoders_jsonMethod · 0.80
load_decodersMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected