]> sigrok.org Git - pulseview.git/blobdiff - pv/data/snapshot.h
Use libsigrok C++ bindings (patch version 7).
[pulseview.git] / pv / data / snapshot.h
index 499164400014d20001ae1e130c177bfcefe990be..48879991fbbcc7d4af1d197ea68accba72512699 100644 (file)
 #ifndef PULSEVIEW_PV_DATA_SNAPSHOT_H
 #define PULSEVIEW_PV_DATA_SNAPSHOT_H
 
-#include <libsigrok/libsigrok.h>
-
 #include <thread>
 #include <mutex>
+#include <vector>
 
 namespace pv {
 namespace data {
@@ -32,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.
@@ -72,10 +71,10 @@ protected:
 
 protected:
        mutable std::recursive_mutex _mutex;
-       void *_data;
+       std::vector<uint8_t> _data;
        uint64_t _sample_count;
        uint64_t _capacity;
-       int _unit_size;
+       unsigned int _unit_size;
 };
 
 } // namespace data