X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=1ef3a28a9316ad030d9ab193515c6c257e595bd5;hp=3d3e01d4787df95cbce69d9f1dd5471eaed8cbed;hb=20f59e957e70250cfb876ac7a1743134d6b83339;hpb=efdec55aec1a137460fa362a381ed1904182bfed diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index 3d3e01d4..1ef3a28a 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -23,9 +23,14 @@ #include #include #include +#include #include +using std::map; +using std::string; +using std::vector; + struct srd_decoder; struct srd_decoder_inst; struct srd_channel; @@ -35,6 +40,7 @@ namespace pv { namespace data { +struct DecodeChannel; class Logic; class SignalBase; @@ -52,30 +58,24 @@ public: bool shown() const; void show(bool show = true); - const std::map >& channels() const; - void set_channels(std::map > channels); + const vector& channels() const; + void set_channels(vector channels); - 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) const; - - std::set< std::shared_ptr > get_data(); + srd_decoder_inst* create_decoder_inst(srd_session *session) const; private: const srd_decoder *const decoder_; bool shown_; - std::map > - channels_; - std::map options_; + vector channels_; + map options_; }; } // namespace decode