2020-01-18 16:40:20 -06:00
|
|
|
#ifndef READ_XML_SIMULATION_SETTING_H
|
|
|
|
#define READ_XML_SIMULATION_SETTING_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "pugixml_util.hpp"
|
|
|
|
#include "pugixml.hpp"
|
|
|
|
#include "simulation_setting.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2020-06-10 16:10:19 -05:00
|
|
|
|
|
|
|
openfpga::SimulationSetting read_xml_simulation_setting(pugi::xml_node& Node,
|
|
|
|
const pugiutil::loc_data& loc_data);
|
2020-01-18 16:40:20 -06:00
|
|
|
|
|
|
|
#endif
|