X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Fdecoder.hpp;h=105c6f744b0cf897df19e64d7237a06ddf50fb67;hp=aa79e01c93d4894f312d0b63c9cc3c99bde8b5bc;hb=04394ded8776d2163c1e815ccc8170b81d76b028;hpb=360ab9be5d6060d05cd7d40f5a50f7eafb787290 diff --git a/pv/data/decode/decoder.hpp b/pv/data/decode/decoder.hpp index aa79e01c..105c6f74 100644 --- a/pv/data/decode/decoder.hpp +++ b/pv/data/decode/decoder.hpp @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#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 @@ -34,20 +34,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(); @@ -57,9 +54,9 @@ public: void show(bool show = true); const std::map >& channels() const; + std::shared_ptr >& channels() const; void set_channels(std::map > channels); + std::shared_ptr > channels); const std::map& options() const; @@ -68,7 +65,7 @@ public: bool have_required_channels() const; srd_decoder_inst* create_decoder_inst( - srd_session *session, int unit_size) const; + srd_session *session) const; std::set< std::shared_ptr > get_data(); @@ -77,7 +74,7 @@ private: bool shown_; - std::map > + std::map > channels_; std::map options_; }; @@ -86,4 +83,4 @@ private: } // namespace data } // namespace pv -#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_H +#endif // PULSEVIEW_PV_DATA_DECODE_DECODER_HPP