X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.hpp;h=21543c5c1141a9e95ecbd9513d90a6145f21d8cf;hp=568b1bb0ad554c6806eaf3d21b2b2fd4bafe526f;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/data/decode/rowdata.hpp b/pv/data/decode/rowdata.hpp index 568b1bb..21543c5 100644 --- a/pv/data/decode/rowdata.hpp +++ b/pv/data/decode/rowdata.hpp @@ -14,17 +14,18 @@ * 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 + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_H -#define PULSEVIEW_PV_DATA_DECODE_ROWDATA_H +#ifndef PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP +#define PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP #include #include "annotation.hpp" +using std::vector; + namespace pv { namespace data { namespace decode { @@ -32,7 +33,7 @@ namespace decode { class RowData { public: - RowData(); + RowData() = default; public: uint64_t get_max_sample() const; @@ -41,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 -#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_H +#endif // PULSEVIEW_PV_DATA_DECODE_ROWDATA_HPP