X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.cpp;h=96a594c3c6ce57a07f621ce9ddf9cd439fed1acd;hb=f228f00ed2c11ce4c9c36e0b758132a075e251da;hp=e47f8f03732ca82929ae6489755f4089f3519665;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/data/decode/annotation.cpp b/pv/data/decode/annotation.cpp index e47f8f0..96a594c 100644 --- a/pv/data/decode/annotation.cpp +++ b/pv/data/decode/annotation.cpp @@ -26,6 +26,8 @@ extern "C" { #include "annotation.hpp" +using std::vector; + namespace pv { namespace data { namespace decode { @@ -39,7 +41,7 @@ Annotation::Annotation(const srd_proto_data *const pdata) : (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) { @@ -58,12 +60,12 @@ 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_; }