X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fdecode%2Fannotation.h;fp=pv%2Fview%2Fdecode%2Fannotation.h;h=4e24121c50622923e5b0284cc8bd475a777d9261;hb=3195aeb6a867b6ab54b4a410182467f63f9b79f2;hp=0000000000000000000000000000000000000000;hpb=6fd14a32c76a8d4548223eba546d1805d2725df0;p=pulseview.git diff --git a/pv/view/decode/annotation.h b/pv/view/decode/annotation.h new file mode 100644 index 0000000..4e24121 --- /dev/null +++ b/pv/view/decode/annotation.h @@ -0,0 +1,49 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2013 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef PULSEVIEW_PV_VIEW_DECODE_ANNOTATION_H +#define PULSEVIEW_PV_VIEW_DECODE_ANNOTATION_H + +#include + +#include + +struct srd_proto_data; + +namespace pv { +namespace view { +namespace decode { + +class Annotation +{ +public: + Annotation(const srd_proto_data *const pdata); + +private: + uint64_t _start_sample; + uint64_t _end_sample; + std::vector _annotations; +}; + +} // namespace decode +} // namespace view +} // namespace pv + +#endif // PULSEVIEW_PV_VIEW_DECODE_ANNOTATION_H