X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fannotation.hpp;h=2be8e88d989e4cddacaa18d9b86156ca875c4e95;hp=7e62cea1f6d07cf6c78d9b26ee961599ed15fc19;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/data/decode/annotation.hpp b/pv/data/decode/annotation.hpp index 7e62cea..2be8e88 100644 --- a/pv/data/decode/annotation.hpp +++ b/pv/data/decode/annotation.hpp @@ -24,6 +24,8 @@ #include +using std::vector; + struct srd_proto_data; namespace pv { @@ -38,13 +40,13 @@ public: uint64_t start_sample() const; uint64_t end_sample() const; int format() const; - const std::vector& annotations() const; + const vector& annotations() const; private: uint64_t start_sample_; uint64_t end_sample_; int format_; - std::vector annotations_; + vector annotations_; }; } // namespace decode