2020-01-18 17:41:42 -06:00
|
|
|
#ifndef WRITE_XML_SIMULATION_SETTING_H
|
|
|
|
#define WRITE_XML_SIMULATION_SETTING_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <fstream>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2020-01-18 17:41:42 -06:00
|
|
|
#include "simulation_setting.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
void write_xml_simulation_setting(
|
|
|
|
std::fstream& fp, const char* fname,
|
|
|
|
const openfpga::SimulationSetting& sim_setting);
|
2020-01-18 17:41:42 -06:00
|
|
|
|
|
|
|
#endif
|