OpenFPGA/libs/libbusgroup/src/read_xml_bus_group.h

22 lines
645 B
C
Raw Normal View History

#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"
#include "pugixml.hpp"
#include "pugixml_util.hpp"
/********************************************************************
* Function declaration
*******************************************************************/
2022-02-17 19:09:03 -06:00
namespace openfpga { // Begin namespace openfpga
2022-02-17 19:09:03 -06:00
BusGroup read_xml_bus_group(const char* fname);
} // End of namespace openfpga
2022-02-17 19:09:03 -06:00
#endif