X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=1b655662bcb707dfe5fd83dbc847164e81bc04a2;hb=0c5fe73e5b66bf31d2dcfa2b2846a86cd2fdf0c4;hp=3d3e01d4787df95cbce69d9f1dd5471eaed8cbed;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index 3d3e01d4..1b655662 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -26,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; @@ -52,30 +57,28 @@ 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); - 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; + 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_; + map options_; }; } // namespace decode