X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fsignal.h;h=99b685c0bdc286f4f4f50e1b08290a8123e57acc;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hp=32d181772fce2ce2c48e571d50573608e7d6018f;hpb=4871ed92f2d9e6e514223383ba16e6ad78c81161;p=pulseview.git diff --git a/pv/view/signal.h b/pv/view/signal.h index 32d1817..99b685c 100644 --- a/pv/view/signal.h +++ b/pv/view/signal.h @@ -21,7 +21,7 @@ #ifndef PULSEVIEW_PV_VIEW_SIGNAL_H #define PULSEVIEW_PV_VIEW_SIGNAL_H -#include +#include #include #include @@ -49,7 +49,7 @@ class Signal : public Trace Q_OBJECT protected: - Signal(boost::shared_ptr dev_inst, + Signal(std::shared_ptr dev_inst, const sr_channel *const probe); public: @@ -58,7 +58,7 @@ public: */ void set_name(QString name); - virtual boost::shared_ptr data() const = 0; + virtual std::shared_ptr data() const = 0; /** * Returns true if the trace is visible and enabled. @@ -79,7 +79,7 @@ private slots: void on_disable(); protected: - boost::shared_ptr _dev_inst; + std::shared_ptr _dev_inst; const sr_channel *const _probe; QComboBox *_name_widget;