#ifndef LOAD_H #define LOAD_H #include "my_process.h" namespace Lib_Load{ class Load { private: vector vec_sections; My_Process::My_Process_call process = My_Process::My_Process_call(); public: void set_sections(vector vec_sections); map& get_load_data(std::map &map_temp, string str_flag_load); }; } #endif