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
506 B
21 lines
506 B
#ifndef LOAD_H
|
|
#define LOAD_H
|
|
|
|
#include "my_process.h"
|
|
namespace Lib_Load{
|
|
class Load {
|
|
|
|
private:
|
|
string sections;
|
|
My_Process::My_Process_call process = My_Process::My_Process_call();
|
|
public:
|
|
void set_sections(string sections);
|
|
int get_count_error();
|
|
void set_count_error(int count_error);
|
|
string get_cmd_error();
|
|
map<string, string>& get_load_data(std::map <string, string> &map_temp, string str_flag_load);
|
|
};
|
|
|
|
|
|
}
|
|
#endif |