X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=3cb69b3ef1b5ad84ad95581c961c9a4f9694850f;hb=f529583485b54ae73401daf780f8a61d1716d5f1;hp=b62711117d0c1a0066ad05570ca6ad7623e3073b;hpb=8b2eb22ed4f467f5364e8e9824a12137e2433b7e;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index b6271111..3cb69b3e 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,17 +42,17 @@ 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_; }; -} -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv #endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP