X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevices%2Fhardwaredevice.hpp;h=32f5b644172cca873c51b04c0102cc3a9911e6c6;hp=bc8e47a589c9640e2828d1c16b80293c49e80ce5;hb=6f925ba9d6faf1077b73c5a5808259576081716a;hpb=4d6c6ea3e6b069787c270d4911083dae05eae4c6 diff --git a/pv/devices/hardwaredevice.hpp b/pv/devices/hardwaredevice.hpp index bc8e47a5..32f5b644 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 @@ -23,6 +22,9 @@ #include "device.hpp" +using std::shared_ptr; +using std::string; + namespace sigrok { class Context; class HardwareDevice; @@ -34,31 +36,31 @@ namespace devices { class HardwareDevice final : public Device { public: - HardwareDevice(const std::shared_ptr &context, - std::shared_ptr device); + HardwareDevice(const shared_ptr &context, + shared_ptr device); ~HardwareDevice(); - std::shared_ptr hardware_device() const; + shared_ptr hardware_device() const; /** * Builds the full name. It only contains all the fields. */ - std::string full_name() const; + 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; + string display_name(const DeviceManager &device_manager) const; void open(); void close(); private: - const std::shared_ptr context_; + const shared_ptr context_; bool device_open_; };