2 * This file is part of the PulseView project.
4 * Copyright (C) 2013 Joel Holdsworth <joel@airwebreathe.org.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_H
22 #define PULSEVIEW_PV_DATA_DECODE_DECODER_H
31 struct srd_decoder_inst;
50 Decoder(const srd_decoder *const decoder);
54 const srd_decoder* decoder() const;
57 void show(bool show = true);
59 const std::map<const srd_channel*,
60 std::shared_ptr<view::LogicSignal> >& channels() const;
61 void set_channels(std::map<const srd_channel*,
62 std::shared_ptr<view::LogicSignal> > channels);
64 const std::map<std::string, GVariant*>& options() const;
66 void set_option(const char *id, GVariant *value);
68 bool have_required_channels() const;
70 srd_decoder_inst* create_decoder_inst(
71 srd_session *session, int unit_size) const;
73 std::set< std::shared_ptr<pv::data::Logic> > get_data();
76 const srd_decoder *const decoder_;
80 std::map<const srd_channel*, std::shared_ptr<pv::view::LogicSignal> >
82 std::map<std::string, GVariant*> options_;
89 #endif // PULSEVIEW_PV_DATA_DECODE_DECODER_H