X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Fsignal.h;h=a8642d244240f501fc39632318218d319f9047eb;hp=bdbd27a35f1b9554cde55dd75b1a441f0b1619b8;hb=83c23cc9fa0d4501d9e6b8759251fa6337f5d491;hpb=9a0cd293620ae082a46ee5f2e53bf700301f9c87 diff --git a/pv/view/signal.h b/pv/view/signal.h index bdbd27a3..a8642d24 100644 --- a/pv/view/signal.h +++ b/pv/view/signal.h @@ -28,12 +28,14 @@ #include -#include - #include "trace.h" +struct sr_probe; + namespace pv { +class DevInst; + namespace data { class SignalData; } @@ -45,7 +47,7 @@ class Signal : public Trace Q_OBJECT protected: - Signal(pv::SigSession &session, sr_probe *const probe); + Signal(boost::shared_ptr dev_inst, sr_probe *const probe); public: /** @@ -74,6 +76,7 @@ private slots: void on_disable(); protected: + boost::shared_ptr _dev_inst; sr_probe *const _probe; QComboBox *_name_widget;