]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/deviceoptions.h
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / prop / binding / deviceoptions.h
index 445361fd6f80467421d2e90c303719643862268f..f0ba92ef777ee85ec1f27bdc955f4624bcedd5bd 100644 (file)
@@ -45,7 +45,7 @@ namespace binding {
 class DeviceOptions : public Binding
 {
 public:
-       DeviceOptions(boost::shared_ptr<pv::device::DevInst> dev_inst,
+       DeviceOptions(std::shared_ptr<pv::device::DevInst> dev_inst,
                const sr_channel_group *group = NULL);
 
 private:
@@ -61,7 +61,7 @@ private:
        static QString print_voltage_threshold(GVariant *const gvar);
 
 protected:
-       boost::shared_ptr<device::DevInst> _dev_inst;
+       std::shared_ptr<device::DevInst> _dev_inst;
        const sr_channel_group *const _group;
 };