X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=logicdata.h;h=cde8eef65559697114fac9c8ec0a0eefcf70467b;hp=f835db5ca9f8f9786b93491b11731090fb256dde;hb=190fc91a86d732c7c9d14603b6bf263894a0e159;hpb=f556bc6a4d1798e59f6d0276cdb0d55b5ffab476 diff --git a/logicdata.h b/logicdata.h index f835db5c..cde8eef6 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 * @@ -20,6 +20,9 @@ #include "signaldata.h" +#include +#include + extern "C" { #include } @@ -36,6 +39,11 @@ public: void push_snapshot( boost::shared_ptr &snapshot); + std::deque< boost::shared_ptr >& + get_snapshots(); + private: const int _num_probes; + std::deque< boost::shared_ptr > + _snapshots; };