OpenFPGA/libopenfpga/libfpgabitstream/src/write_xml_arch_bitstream.h

23 lines
731 B
C
Raw Normal View History

#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 {
void write_xml_architecture_bitstream(const BitstreamManager& bitstream_manager,
const std::string& fname);
2020-02-23 21:40:18 -06:00
} /* end namespace openfpga */
#endif