X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Flogic.hpp;fp=pv%2Fdata%2Flogic.hpp;h=51e12cb984db45675ac8a47886d771ebe8f538ed;hp=0000000000000000000000000000000000000000;hb=2acdb232d6bb452cfdfaea3ef5218fb4da592329;hpb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5 diff --git a/pv/data/logic.hpp b/pv/data/logic.hpp new file mode 100644 index 00000000..51e12cb9 --- /dev/null +++ b/pv/data/logic.hpp @@ -0,0 +1,59 @@ +/* + * This file is part of the PulseView project. + * + * Copyright (C) 2012 Joel Holdsworth + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#ifndef PULSEVIEW_PV_DATA_LOGIC_H +#define PULSEVIEW_PV_DATA_LOGIC_H + +#include "signaldata.hpp" + +#include +#include + +namespace pv { +namespace data { + +class LogicSnapshot; + +class Logic : public SignalData +{ +public: + Logic(unsigned int num_channels); + + int get_num_channels() const; + + void push_snapshot( + std::shared_ptr &snapshot); + + std::deque< std::shared_ptr >& + get_snapshots(); + + void clear(); + + uint64_t get_max_sample_count() const; + +private: + const unsigned int num_channels_; + std::deque< std::shared_ptr > snapshots_; +}; + +} // namespace data +} // namespace pv + +#endif // PULSEVIEW_PV_DATA_LOGIC_H