X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=logicdata.h;h=cde8eef65559697114fac9c8ec0a0eefcf70467b;hb=b3f22de060b73f15ad3eb2dabee04a0b4f5d947e;hp=9c7e4b9782d3cd3d7092a84426304d858f8a9b38;hpb=2858b391af20bd46c9a7da17195ec8d58bcd12c3;p=pulseview.git diff --git a/logicdata.h b/logicdata.h index 9c7e4b9..cde8eef 100644 --- a/logicdata.h +++ b/logicdata.h @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the PulseView project. * * Copyright (C) 2012 Joel Holdsworth * @@ -21,7 +21,7 @@ #include "signaldata.h" #include -#include +#include extern "C" { #include @@ -39,11 +39,11 @@ public: void push_snapshot( boost::shared_ptr &snapshot); - std::queue< boost::shared_ptr >& + std::deque< boost::shared_ptr >& get_snapshots(); private: const int _num_probes; - std::queue< boost::shared_ptr > + std::deque< boost::shared_ptr > _snapshots; };