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.
21 lines
354 B
21 lines
354 B
#ifndef MY_DEVICE_H
|
|
#define MY_DEVICE_H
|
|
|
|
#include "project_lib.h"
|
|
#include "my_process.h"
|
|
#include "util.h"
|
|
#include "my_type.h"
|
|
|
|
|
|
namespace Devices {
|
|
class Parted{
|
|
protected:
|
|
My_Process::My_Process_call obj_process_call = My_Process::My_Process_call();
|
|
public:
|
|
map_str_str get_parted();
|
|
};
|
|
|
|
}
|
|
#endif
|
|
|