X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevicemanager.h;h=891ba3d2c1ac28a254917a7da49def32828779d2;hp=b7f2d49a7e016ce49e6b66dc0124b17b1779dbb3;hb=e183f4e328db8bb134652254ba9bf0707dc16c66;hpb=dc0867ff7ec693953afb62f9512ad7dd3339a2b2 diff --git a/pv/devicemanager.h b/pv/devicemanager.h index b7f2d49a..891ba3d2 100644 --- a/pv/devicemanager.h +++ b/pv/devicemanager.h @@ -27,12 +27,14 @@ #include #include +#include + struct sr_context; struct sr_dev_driver; -struct sr_dev_inst; namespace pv { +class DevInst; class SigSession; class DeviceManager @@ -42,18 +44,17 @@ public: ~DeviceManager(); - const std::list& devices() const; + const std::list< boost::shared_ptr >& devices() const; - void use_device(sr_dev_inst *sdi, SigSession *owner); + void use_device(boost::shared_ptr dev_inst, + SigSession *owner); - void release_device(sr_dev_inst *sdi); + void release_device(boost::shared_ptr dev_inst); - std::list driver_scan( + std::list< boost::shared_ptr > driver_scan( struct sr_dev_driver *const driver, GSList *const drvopts = NULL); - static std::string format_device_title(const sr_dev_inst *const sdi); - private: void init_drivers(); @@ -63,13 +64,14 @@ private: void release_driver(struct sr_dev_driver *const driver); - static bool compare_devices(const sr_dev_inst *const a, - const sr_dev_inst *const b); + static bool compare_devices(boost::shared_ptr a, + boost::shared_ptr b); private: struct sr_context *const _sr_ctx; - std::list _devices; - std::map _used_devices; + std::list< boost::shared_ptr > _devices; + std::map< boost::shared_ptr, pv::SigSession*> + _used_devices; }; } // namespace pv