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
425 B
20 lines
425 B
#ifndef LOAD_H
|
|
#define LOAD_H
|
|
|
|
#include "my_process.h"
|
|
namespace Lib_Load{
|
|
class Load {
|
|
|
|
private:
|
|
vector<string> vec_sections;
|
|
My_Process::My_Process_call process = My_Process::My_Process_call();
|
|
public:
|
|
Load(/* args */);
|
|
~Load();
|
|
void set_sections(vector<string> vec_sections);
|
|
map<string, string> get_load_data(string str_flag_load);
|
|
};
|
|
|
|
|
|
}
|
|
#endif |