]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/binding/binding.h
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / prop / binding / binding.h
index 89c1acbc88628779ad4ddad0797aed5590745230..cce8ebf8a15cfe86d174aa5641fa9d514880bcea 100644 (file)
@@ -24,7 +24,7 @@
 #include <glib.h>
 
 #include <vector>
-#include <boost/shared_ptr.hpp>
+#include <memory>
 
 #include <QString>
 
@@ -41,7 +41,7 @@ namespace binding {
 class Binding
 {
 public:
-       const std::vector< boost::shared_ptr<Property> >& properties();
+       const std::vector< std::shared_ptr<Property> >& properties();
 
        void commit();
 
@@ -54,7 +54,7 @@ public:
        static QString print_gvariant(GVariant *const gvar);
 
 protected:
-       std::vector< boost::shared_ptr<Property> > _properties;
+       std::vector< std::shared_ptr<Property> > _properties;
 };
 
 } // binding