14 lines
516 B
C
14 lines
516 B
C
|
#ifndef FABRIC_PIN_PHYSICAL_LOCATION_XML_CONSTANTS_H
|
||
|
#define FABRIC_PIN_PHYSICAL_LOCATION_XML_CONSTANTS_H
|
||
|
|
||
|
/* Constants required by XML parser */
|
||
|
|
||
|
constexpr const char* XML_PINLOC_ROOT_NAME = "pin_location";
|
||
|
constexpr const char* XML_MODULE_NODE_NAME = "module";
|
||
|
constexpr const char* XML_MODULE_ATTRIBUTE_NAME = "name";
|
||
|
constexpr const char* XML_MODULE_PINLOC_NODE_NAME = "loc";
|
||
|
constexpr const char* XML_MODULE_PINLOC_ATTRIBUTE_PIN = "pin";
|
||
|
constexpr const char* XML_MODULE_PINLOC_ATTRIBUTE_SIDE = "side";
|
||
|
|
||
|
#endif
|