]> sigrok.org Git - pulseview.git/blobdiff - pv/popups/deviceoptions.cpp
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / popups / deviceoptions.cpp
index 7e1be20d52d5ca4dd7b14835387f960590c75b82..eaa036c2e237c4a38b20460709e3ef0c2664e447 100644 (file)
 
 #include "deviceoptions.h"
 
-#include <boost/foreach.hpp>
-
 #include <QFormLayout>
 #include <QListWidget>
 
 #include <pv/prop/property.h>
 
-using boost::shared_ptr;
+using std::shared_ptr;
 
 namespace pv {
 namespace popups {
 
-DeviceOptions::DeviceOptions(shared_ptr<DevInst> dev_inst, QWidget *parent) :
+DeviceOptions::DeviceOptions(shared_ptr<device::DevInst> dev_inst,
+       QWidget *parent) :
        Popup(parent),
        _dev_inst(dev_inst),
        _layout(this),