X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Flogic.h;h=607e0bd450d78f56c1462a2adf158105972657ce;hb=abad24e2d61c0c84ac8495c22d29a8a3a49ee9fa;hp=3d8339421f18506d0882160fa8ab3e8639c20d57;hpb=a007f5ad25bad88cf62443d5471449ce8a6f5f29;p=pulseview.git diff --git a/pv/data/logic.h b/pv/data/logic.h index 3d83394..607e0bd 100644 --- a/pv/data/logic.h +++ b/pv/data/logic.h @@ -23,8 +23,8 @@ #include "signaldata.h" -#include #include +#include namespace pv { namespace data { @@ -39,9 +39,9 @@ public: int get_num_probes() const; 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(); @@ -50,7 +50,7 @@ public: private: const unsigned int _num_probes; - std::deque< boost::shared_ptr > _snapshots; + std::deque< std::shared_ptr > _snapshots; }; } // namespace data