2022-02-17 17:50:44 -06:00
|
|
|
#ifndef READ_XML_BUS_GROUP_H
|
|
|
|
#define READ_XML_BUS_GROUP_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "bus_group.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "pugixml.hpp"
|
|
|
|
#include "pugixml_util.hpp"
|
2022-02-17 17:50:44 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2022-02-17 19:09:03 -06:00
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
namespace openfpga { // Begin namespace openfpga
|
2022-02-17 19:09:03 -06:00
|
|
|
|
2022-02-17 17:50:44 -06:00
|
|
|
BusGroup read_xml_bus_group(const char* fname);
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
} // End of namespace openfpga
|
2022-02-17 19:09:03 -06:00
|
|
|
|
2022-02-17 17:50:44 -06:00
|
|
|
#endif
|