]> sigrok.org Git - pulseview.git/blobdiff - pv/device/devinst.h
Moved session creation into DevInst objects
[pulseview.git] / pv / device / devinst.h
index 6e81f49c686fcc8ab1424ed2836ae6e859e5e348..8932f1807f542b07242a48f6836565985a886229 100644 (file)
@@ -36,6 +36,9 @@ struct sr_probe;
 struct sr_probe_group;
 
 namespace pv {
+
+class SigSession;
+
 namespace device {
 
 class DevInst : public QObject
@@ -43,10 +46,16 @@ class DevInst : public QObject
        Q_OBJECT
 
 protected:
-       DevInst(sr_dev_inst *sdi);
+       DevInst();
 
 public:
-       sr_dev_inst* dev_inst() const;
+       virtual sr_dev_inst* dev_inst() const = 0;
+
+       virtual void use(SigSession *owner) throw(QString);
+
+       virtual void release();
+
+       SigSession* owner() const;
 
        virtual std::string format_device_title() const = 0;
 
@@ -66,11 +75,18 @@ public:
         */
        uint64_t get_sample_limit();
 
+       virtual bool is_trigger_enabled() const;
+
+public:
+       virtual void start();
+
+       virtual void run();
+
 signals:
        void config_changed();
 
 protected:
-       sr_dev_inst *const _sdi;
+       SigSession *_owner;
 };
 
 } // device