X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.h;h=4eeb09e1af01718091ef3456604b886aea548a21;hp=3920aa4c40012f4313631984c434d6cd3d14ed66;hb=6ac6242b25cfbd4df14abe7580adc9d0f4cffe43;hpb=adb0a9838d35c42add30f64df4f8df427aed6b89 diff --git a/pv/data/decode/decoder.h b/pv/data/decode/decoder.h index 3920aa4c..4eeb09e1 100644 --- a/pv/data/decode/decoder.h +++ b/pv/data/decode/decoder.h @@ -58,14 +58,14 @@ public: const std::map >& channels() const; - void set_probes(std::map > probes); + void set_channels(std::map > channels); const std::map& options() const; void set_option(const char *id, GVariant *value); - bool have_required_probes() const; + bool have_required_channels() const; srd_decoder_inst* create_decoder_inst( srd_session *session, int unit_size) const; @@ -78,7 +78,7 @@ private: bool _shown; std::map > - _probes; + _channels; std::map _options; };