X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fhardwaredevice.hpp;h=bc8e47a589c9640e2828d1c16b80293c49e80ce5;hp=41d79068a2b3765c68586bd807f5312f22c38496;hb=2ad82c2e40b6865481733913a2c32735602f63c4;hpb=da30ecb7e72bd2547e524258efa5ec642988b70b diff --git a/pv/devices/hardwaredevice.hpp b/pv/devices/hardwaredevice.hpp index 41d79068..bc8e47a5 100644 --- a/pv/devices/hardwaredevice.hpp +++ b/pv/devices/hardwaredevice.hpp @@ -41,10 +41,25 @@ public: std::shared_ptr hardware_device() const; - void create(); + /** + * Builds the full name. It only contains all the fields. + */ + std::string full_name() const; + + /** + * Builds the display name. It only contains fields as required. + * @param device_manager a reference to the device manager is needed + * so that other similarly titled devices can be detected. + */ + std::string display_name(const DeviceManager &device_manager) const; + + void open(); + + void close(); private: const std::shared_ptr context_; + bool device_open_; }; } // namespace devices