X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fanalog.h;h=b89dd22ffb0e8c0d09019f5a18b8295574d50f42;hb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5;hp=42e31677ebdcae8f350fc5ebbfd859d99ba86914;hpb=a007f5ad25bad88cf62443d5471449ce8a6f5f29;p=pulseview.git diff --git a/pv/data/analog.h b/pv/data/analog.h index 42e3167..b89dd22 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