]> sigrok.org Git - pulseview.git/blobdiff - pv/prop/property.h
Replaced boost::bind with C++11 lambdas
[pulseview.git] / pv / prop / property.h
index 22e211b1936905146d5d80118a2756dc5859b7da..e5a523f93758ac6612f87637a06b7cad5770bd5e 100644 (file)
@@ -21,9 +21,7 @@
 #ifndef PULSEVIEW_PV_PROP_PROPERTY_H
 #define PULSEVIEW_PV_PROP_PROPERTY_H
 
-#include <glib-2.0/glib.h>
-
-#include <boost/function.hpp>
+#include <glib.h>
 
 #include <QString>
 #include <QWidget>
@@ -38,8 +36,8 @@ class Property : public QObject
        Q_OBJECT;
 
 public:
-       typedef boost::function<GVariant* ()> Getter;
-       typedef boost::function<void (GVariant*)> Setter;
+       typedef std::function<GVariant* ()> Getter;
+       typedef std::function<void (GVariant*)> Setter;
 
 protected:
        Property(QString name, Getter getter, Setter setter);