X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=f2c6793bbbb789c286aa5e90b3519ddad8753a2c;hb=4caaaacee32e9a8145968891eb9cd9225260530f;hp=3cb69b3ef1b5ad84ad95581c961c9a4f9694850f;hpb=870ea3dbf35b182e120c5d84ab89bf9cb7691232;p=pulseview.git diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 3cb69b3..f2c6793 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -22,6 +22,8 @@ #include +#include + #include "annotation.hpp" using std::vector; @@ -39,13 +41,15 @@ public: uint64_t get_max_sample() const; /** - * Extracts sorted annotations between two period into a vector. + * Extracts annotations between the given sample range into a vector. + * Note: The annotations are unsorted and only annotations that fully + * fit into the sample range are considered. */ void get_annotation_subset( 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: vector annotations_;