2022-02-17 18:17:37 -06:00
|
|
|
#ifndef WRITE_XML_BUS_GROUP_H
|
|
|
|
#define WRITE_XML_BUS_GROUP_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <fstream>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2022-02-17 18:17:37 -06:00
|
|
|
#include "bus_group.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
namespace openfpga { // Begin namespace openfpga
|
2022-02-17 19:09:03 -06:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
int write_xml_bus_group(const char* fname, const BusGroup& bus_group);
|
2022-02-17 18:17:37 -06:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
} // End of namespace openfpga
|
2022-02-17 19:09:03 -06:00
|
|
|
|
2022-02-17 18:17:37 -06:00
|
|
|
#endif
|