#pragma once #include #include #include class Device { public: Device(std::string path_name); std::string get_name() { return name; } void command(std::string const &comm) const; std::string query(std::string const &comm) const; };