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