X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=07cc41bf3eb1f8febf04c06595d8da2f142eb7da;hp=f0e3534f7e2507cb54899a581b05d1d3b63f39c0;hb=f228f00ed2c11ce4c9c36e0b758132a075e251da;hpb=efdec55aec1a137460fa362a381ed1904182bfed diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index f0e3534f..07cc41bf 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 { @@ -31,7 +35,7 @@ namespace decode { class RowData { public: - RowData(); + RowData() = default; public: uint64_t get_max_sample() const; @@ -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