]> sigrok.org Git - pulseview.git/blobdiff - pv/devices/hardwaredevice.hpp
build: Only try to read the VERSION file if it exists
[pulseview.git] / pv / devices / hardwaredevice.hpp
index 41d79068a2b3765c68586bd807f5312f22c38496..df11ed25783caa8221fb269a6b0b60fff3554eec 100644 (file)
@@ -41,10 +41,23 @@ public:
 
        std::shared_ptr<sigrok::HardwareDevice> hardware_device() const;
 
+       /**
+        * 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 create();
 
 private:
        const std::shared_ptr<sigrok::Context> context_;
+       bool device_open_;
 };
 
 } // namespace devices