X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=07cc41bf3eb1f8febf04c06595d8da2f142eb7da;hb=1becee23bdd2b44145b753edd05bf01f7fb0707e;hp=b62711117d0c1a0066ad05570ca6ad7623e3073b;hpb=8b2eb22ed4f467f5364e8e9824a12137e2433b7e;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index b627111..07cc41b 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -22,8 +22,12 @@ #include +#include + #include "annotation.hpp" +using std::vector; + namespace pv { namespace data { namespace decode { @@ -40,17 +44,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); + void emplace_annotation(srd_proto_data *pdata); private: - std::vector annotations_; + vector annotations_; }; -} -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv #endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP