X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fanalog.h;h=7e36edd6e8abd1b782dac745163f26f430660f69;hp=42e31677ebdcae8f350fc5ebbfd859d99ba86914;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hpb=d9aecf1fcd9af471db3b59de7efc65b9632a6d79 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