2020-06-21 14:06:39 -05:00
|
|
|
#ifndef WRITE_XML_ARCH_BITSTREAM_H
|
|
|
|
#define WRITE_XML_ARCH_BITSTREAM_H
|
2020-02-23 21:40:18 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <string>
|
|
|
|
#include "bitstream_manager.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-06-21 14:06:39 -05:00
|
|
|
void write_xml_architecture_bitstream(const BitstreamManager& bitstream_manager,
|
2022-01-25 15:37:54 -06:00
|
|
|
const std::string& fname,
|
|
|
|
const bool& include_time_stamp);
|
2020-02-23 21:40:18 -06:00
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|