X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=eff2367fb3604cf4c76e7e9ca7c9887cf0e741c4;hp=fbe59059cf6190167d8cc0333c27e01008e094eb;hb=407c9ebeb13200fb7f28a33cab00e996c018f8dc;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329 diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index fbe59059..eff2367f 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -14,12 +14,11 @@ * 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 + * along with this program; if not, see . */ -#ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_H -#define PULSEVIEW_PV_DATA_DECODE_DECODER_H +#ifndef PULSEVIEW_PV_DATA_DECODE_DECODER_HPP +#define PULSEVIEW_PV_DATA_DECODE_DECODER_HPP #include #include @@ -27,6 +26,11 @@ #include +using std::map; +using std::set; +using std::shared_ptr; +using std::string; + struct srd_decoder; struct srd_decoder_inst; struct srd_channel; @@ -34,20 +38,17 @@ struct srd_session; namespace pv { -namespace view { -class LogicSignal; -} - namespace data { class Logic; +class SignalBase; namespace decode { class Decoder { public: - Decoder(const srd_decoder *const decoder); + Decoder(const srd_decoder *const dec); virtual ~Decoder(); @@ -56,34 +57,37 @@ public: bool shown() const; void show(bool show = true); - const std::map >& channels() const; - void set_channels(std::map > channels); + const map >& channels() const; + void set_channels(map > channels); + + void set_initial_pins(GArray *initial_pins); + + GArray *initial_pins() const; - const std::map& options() const; + const map& options() const; void set_option(const char *id, GVariant *value); bool have_required_channels() const; - srd_decoder_inst* create_decoder_inst( - srd_session *session, int unit_size) const; + srd_decoder_inst* create_decoder_inst(srd_session *session) const; - std::set< std::shared_ptr > get_data(); + set< shared_ptr > get_data(); private: const srd_decoder *const decoder_; bool shown_; - std::map > - channels_; - std::map options_; + map > channels_; + GArray *initial_pins_; + map options_; }; } // namespace decode } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_H +#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_HPP