X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;fp=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=21543c5c1141a9e95ecbd9513d90a6145f21d8cf;hp=b62711117d0c1a0066ad05570ca6ad7623e3073b;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index b6271111..21543c5c 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -24,6 +24,8 @@ #include "annotation.hpp" +using std::vector; + namespace pv { namespace data { namespace decode { @@ -40,13 +42,13 @@ public: * Extracts sorted annotations between two period into a vector. */ void get_annotation_subset( - std::vector &dest, + vector &dest, uint64_t start_sample, uint64_t end_sample) const; void push_annotation(const Annotation &a); private: - std::vector annotations_; + vector annotations_; }; }