OpenFPGA/libs/libbusgroup/src/write_xml_bus_group.h

21 lines
659 B
C
Raw Normal View History

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