X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.cpp;h=e983b0df1c3e971ba7942c9ccadb86ed10e09bbb;hp=6287edce70f60fccd12ee13313cbeb0b6e7671d7;hb=5a914348e8c95f92fd7c1c5988d563c5fb472aa2;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/data/decode/annotation.cpp b/pv/data/decode/annotation.cpp index 6287edc..e983b0d 100644 --- a/pv/data/decode/annotation.cpp +++ b/pv/data/decode/annotation.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 . */ extern "C" { @@ -27,23 +26,26 @@ extern "C" { #include "annotation.hpp" +using std::vector; + namespace pv { namespace data { namespace decode { -Annotation::Annotation(const srd_proto_data *const pdata) : +Annotation::Annotation(const srd_proto_data *const pdata, const Row *row) : start_sample_(pdata->start_sample), - end_sample_(pdata->end_sample) + end_sample_(pdata->end_sample), + row_(row) { assert(pdata); const srd_proto_data_annotation *const pda = (const srd_proto_data_annotation*)pdata->data; assert(pda); - format_ = pda->ann_class; + ann_class_ = (Class)(pda->ann_class); const char *const *annotations = (char**)pda->ann_text; - while(*annotations) { + while (*annotations) { annotations_.push_back(QString::fromUtf8(*annotations)); annotations++; } @@ -59,16 +61,26 @@ uint64_t Annotation::end_sample() const return end_sample_; } -int Annotation::format() const +Annotation::Class Annotation::ann_class() const { - return format_; + return ann_class_; } -const std::vector& Annotation::annotations() const +const vector& Annotation::annotations() const { return annotations_; } +const Row* Annotation::row() const +{ + return row_; +} + +bool Annotation::operator<(const Annotation &other) const +{ + return (start_sample_ < other.start_sample_); +} + } // namespace decode } // namespace data } // namespace pv