2021-02-01 18:43:46 -06:00
|
|
|
#ifndef READ_XML_BITSTREAM_SETTING_H
|
|
|
|
#define READ_XML_BITSTREAM_SETTING_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "bitstream_setting.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "pugixml.hpp"
|
|
|
|
#include "pugixml_util.hpp"
|
2021-02-01 18:43:46 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
openfpga::BitstreamSetting read_xml_bitstream_setting(
|
|
|
|
pugi::xml_node& Node, const pugiutil::loc_data& loc_data);
|
2021-02-01 18:43:46 -06:00
|
|
|
|
|
|
|
#endif
|