X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecoderstack.cpp;h=40683758a4c1280de4815e7439e09e68fc5e47cf;hp=1cb7d4ff126f7fda54dfac544a24a599e91dd67d;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hpb=d9aecf1fcd9af471db3b59de7efc65b9632a6d79 diff --git a/pv/data/decoderstack.cpp b/pv/data/decoderstack.cpp index 1cb7d4f..4068375 100644 --- a/pv/data/decoderstack.cpp +++ b/pv/data/decoderstack.cpp @@ -38,7 +38,6 @@ using boost::lock_guard; using boost::mutex; using boost::optional; -using boost::shared_ptr; using boost::unique_lock; using std::deque; using std::make_pair; @@ -47,6 +46,7 @@ using std::min; using std::list; using std::map; using std::pair; +using std::shared_ptr; using std::vector; using namespace pv::data::decode; @@ -87,13 +87,13 @@ DecoderStack::~DecoderStack() } } -const std::list< boost::shared_ptr >& +const std::list< std::shared_ptr >& DecoderStack::stack() const { return _stack; } -void DecoderStack::push(boost::shared_ptr decoder) +void DecoderStack::push(std::shared_ptr decoder) { assert(decoder); _stack.push_back(decoder);