]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/decoderoptions.h
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / prop / binding / decoderoptions.h
index 8217b4791e19c6f9a3b98b4f71df8f5118634f5a..a0b8dc4d3880b04495edcb2e8d6726cd17ba095b 100644 (file)
 #ifndef PULSEVIEW_PV_PROP_BINDING_DECODEROPTIONS_H
 #define PULSEVIEW_PV_PROP_BINDING_DECODEROPTIONS_H
 
-#include <libsigrokdecode/libsigrokdecode.h>
-
 #include "binding.h"
 
+#include <pv/prop/property.h>
+
+struct srd_decoder_option;
+
 namespace pv {
+
+namespace data {
+class DecoderStack;
+namespace decode {
+class Decoder;
+}
+}
+
 namespace prop {
 namespace binding {
 
 class DecoderOptions : public Binding
 {
 public:
-       DecoderOptions(const srd_decoder *decoder, GHashTable *options);
+       DecoderOptions(std::shared_ptr<pv::data::DecoderStack> decoder_stack,
+               std::shared_ptr<pv::data::decode::Decoder> decoder);
 
 private:
+       static std::shared_ptr<Property> bind_enum(const QString &name,
+               const srd_decoder_option *option,
+               Property::Getter getter, Property::Setter setter);
+
        GVariant* getter(const char *id);
 
        void setter(const char *id, GVariant *value);
 
 private:
-       const srd_decoder *const _decoder;
-       GHashTable *const _options;
+       std::shared_ptr<pv::data::DecoderStack> _decoder_stack;
+       std::shared_ptr<pv::data::decode::Decoder> _decoder;
 };
 
 } // binding