X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.h;h=4f0b6dec3137fedf5f679b4b015f27cacee02703;hb=e9213170687cf4afd14e20acdc690ff9381d94ae;hp=5ee387477a7e0119ddb7331bc4271496687c916a;hpb=07dcf5615620315f4eda91a930b8540e64b625f2;p=pulseview.git diff --git a/pv/device/devinst.h b/pv/device/devinst.h index 5ee3874..4f0b6de 100644 --- a/pv/device/devinst.h +++ b/pv/device/devinst.h @@ -21,10 +21,9 @@ #ifndef PULSEVIEW_PV_DEVICE_DEVINST_H #define PULSEVIEW_PV_DEVICE_DEVINST_H +#include #include -#include - #include #include @@ -32,12 +31,12 @@ #include struct sr_dev_inst; -struct sr_probe; -struct sr_probe_group; +struct sr_channel; +struct sr_channel_group; -namespace pv { +#include -class SigSession; +namespace pv { namespace device { @@ -51,21 +50,21 @@ protected: public: virtual sr_dev_inst* dev_inst() const = 0; - void use(SigSession *owner); + virtual void use(SigSession *owner) throw(QString); - void release(); + virtual void release(); SigSession* owner() const; virtual std::string format_device_title() const = 0; - GVariant* get_config(const sr_probe_group *group, int key); + GVariant* get_config(const sr_channel_group *group, int key); - bool set_config(const sr_probe_group *group, int key, GVariant *data); + bool set_config(const sr_channel_group *group, int key, GVariant *data); - GVariant* list_config(const sr_probe_group *group, int key); + GVariant* list_config(const sr_channel_group *group, int key); - void enable_probe(const sr_probe *probe, bool enable = true); + void enable_probe(const sr_channel *probe, bool enable = true); /** * @brief Gets the sample limit from the driver. @@ -77,7 +76,12 @@ public: virtual bool is_trigger_enabled() const; -signals: +public: + virtual void start(); + + virtual void run(); + +Q_SIGNALS: void config_changed(); protected: