25 lines
785 B
C
25 lines
785 B
C
|
#ifndef WRITE_XML_DEVICE_RR_GSB_H
|
||
|
#define WRITE_XML_DEVICE_RR_GSB_H
|
||
|
|
||
|
/********************************************************************
|
||
|
* Include header files that are required by function declaration
|
||
|
*******************************************************************/
|
||
|
#include <string>
|
||
|
#include "rr_graph_obj.h"
|
||
|
#include "device_rr_gsb.h"
|
||
|
|
||
|
/********************************************************************
|
||
|
* Function declaration
|
||
|
*******************************************************************/
|
||
|
|
||
|
/* begin namespace openfpga */
|
||
|
namespace openfpga {
|
||
|
|
||
|
void write_device_rr_gsb_to_xml(const char* sb_xml_dir,
|
||
|
const RRGraph& rr_graph,
|
||
|
const DeviceRRGSB& device_rr_gsb);
|
||
|
|
||
|
} /* end namespace openfpga */
|
||
|
|
||
|
#endif
|