X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fanalog.h;h=7e36edd6e8abd1b782dac745163f26f430660f69;hb=e9213170687cf4afd14e20acdc690ff9381d94ae;hp=42e31677ebdcae8f350fc5ebbfd859d99ba86914;hpb=a007f5ad25bad88cf62443d5471449ce8a6f5f29;p=pulseview.git diff --git a/pv/data/analog.h b/pv/data/analog.h index 42e31677..7e36edd6 100644 --- a/pv/data/analog.h +++ b/pv/data/analog.h @@ -23,8 +23,8 @@ #include "signaldata.h" -#include #include +#include namespace pv { namespace data { @@ -37,9 +37,9 @@ public: Analog(); void push_snapshot( - boost::shared_ptr &snapshot); + std::shared_ptr &snapshot); - std::deque< boost::shared_ptr >& + std::deque< std::shared_ptr >& get_snapshots(); void clear(); @@ -47,7 +47,7 @@ public: uint64_t get_max_sample_count() const; private: - std::deque< boost::shared_ptr > _snapshots; + std::deque< std::shared_ptr > _snapshots; }; } // namespace data