X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fsnapshot.h;h=48879991fbbcc7d4af1d197ea68accba72512699;hb=e8d009288de28cb194bc7964f96677c2baf900c9;hp=e4b9c0e812aaf7a7e0b3722d26a352997d02180b;hpb=c82c7e4e330ce5aa04c4f3b8e6f8de85e3e288e1;p=pulseview.git diff --git a/pv/data/snapshot.h b/pv/data/snapshot.h index e4b9c0e..4887999 100644 --- a/pv/data/snapshot.h +++ b/pv/data/snapshot.h @@ -21,8 +21,6 @@ #ifndef PULSEVIEW_PV_DATA_SNAPSHOT_H #define PULSEVIEW_PV_DATA_SNAPSHOT_H -#include - #include #include #include @@ -33,13 +31,13 @@ namespace data { class Snapshot { public: - Snapshot(int unit_size); + Snapshot(unsigned int unit_size); virtual ~Snapshot(); uint64_t get_sample_count() const; - int unit_size() const; + unsigned int unit_size() const; /** * @brief Increase the capacity of the snapshot. @@ -76,7 +74,7 @@ protected: std::vector _data; uint64_t _sample_count; uint64_t _capacity; - int _unit_size; + unsigned int _unit_size; }; } // namespace data