X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevicemanager.hpp;h=43d93a7a88f5778d0bed24bcead6ec1f2e9dc85e;hp=145f9e80a44e68fbfa96bafe027a4a2781c89e75;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=00f6bae935837b38b0d03a5928ba8175d460413f diff --git a/pv/devicemanager.hpp b/pv/devicemanager.hpp index 145f9e8..43d93a7 100644 --- a/pv/devicemanager.hpp +++ b/pv/devicemanager.hpp @@ -25,6 +25,11 @@ #include #include +using std::list; +using std::map; +using std::shared_ptr; +using std::string; + namespace Glib { class VariantBase; } @@ -47,34 +52,33 @@ class Session; class DeviceManager { public: - DeviceManager(std::shared_ptr context); + DeviceManager(shared_ptr context); ~DeviceManager() = default; - const std::shared_ptr& context() const; + const shared_ptr& context() const; - std::shared_ptr context(); + shared_ptr context(); - const std::list< std::shared_ptr >& - devices() const; + const list< shared_ptr >& devices() const; - std::list< std::shared_ptr > driver_scan( - std::shared_ptr driver, - std::map drvopts); + list< shared_ptr > driver_scan( + shared_ptr driver, + map drvopts); - const std::map get_device_info( - const std::shared_ptr device); + const map get_device_info( + const shared_ptr device); - const std::shared_ptr find_device_from_info( - const std::map search_info); + const shared_ptr find_device_from_info( + const map search_info); private: - bool compare_devices(std::shared_ptr a, - std::shared_ptr b); + bool compare_devices(shared_ptr a, + shared_ptr b); protected: - std::shared_ptr context_; - std::list< std::shared_ptr > devices_; + shared_ptr context_; + list< shared_ptr > devices_; }; } // namespace pv