You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
365 B
20 lines
365 B
#ifndef MY_DEVICE_H
|
|
#define MY_DEVICE_H
|
|
|
|
#include "project_lib.h"
|
|
#include "util.h"
|
|
#include "my_type.h"
|
|
|
|
|
|
namespace Devices {
|
|
class Get_device {
|
|
|
|
public:
|
|
map_str_device get_map_part_devices(string find_device_name);
|
|
std::vector<Mount> get_part_devices(string find_device_name);
|
|
std::vector<Mount> get_all_device();
|
|
};
|
|
}
|
|
#endif
|
|
|