#ifndef MY_DEVICE_H #define MY_DEVICE_H #include "project_lib.h" #include "util.h" namespace Devices { class Get_device { public: struct Mount { std::string device; std::string destination; std::string fstype; std::string options; std::string dump; std::string pass; }; public: std::vector get_all_device(); std::vector Get_device::get_part_devices(string find_device_name) }; } #endif