X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fhardwaredevice.hpp;h=ed479c4fc6d238fdd1e8e83e610ab5d612b2ed8c;hp=41d79068a2b3765c68586bd807f5312f22c38496;hb=efdec55aec1a137460fa362a381ed1904182bfed;hpb=da30ecb7e72bd2547e524258efa5ec642988b70b diff --git a/pv/devices/hardwaredevice.hpp b/pv/devices/hardwaredevice.hpp index 41d7906..ed479c4 100644 --- a/pv/devices/hardwaredevice.hpp +++ b/pv/devices/hardwaredevice.hpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #ifndef PULSEVIEW_PV_DEVICES_HARDWAREDEVICE_HPP @@ -41,10 +40,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