]> sigrok.org Git - pulseview.git/blobdiff - pv/device/devinst.h
Moved DevInst::_sdi down into Device
[pulseview.git] / pv / device / devinst.h
index 073813f2f7d1d03f418c05b07952ecc63fe784c4..fb0b7dfbb89f1ce3d96366952f8198d3bac2fed3 100644 (file)
@@ -36,18 +36,28 @@ struct sr_probe;
 struct sr_probe_group;
 
 namespace pv {
+
+class SigSession;
+
 namespace device {
 
 class DevInst : public QObject
 {
        Q_OBJECT
 
+protected:
+       DevInst();
+
 public:
-       DevInst(sr_dev_inst *sdi);
+       virtual sr_dev_inst* dev_inst() const = 0;
+
+       void use(SigSession *owner);
+
+       void release();
 
-       sr_dev_inst* dev_inst() const;
+       SigSession* owner() const;
 
-       std::string format_device_title() const;
+       virtual std::string format_device_title() const = 0;
 
        GVariant* get_config(const sr_probe_group *group, int key);
 
@@ -68,8 +78,8 @@ public:
 signals:
        void config_changed();
 
-private:
-       sr_dev_inst *const _sdi;
+protected:
+       SigSession *_owner;
 };
 
 } // device