2020-01-18 22:19:20 -06:00
|
|
|
#ifndef READ_XML_CONFIG_PROTOCOL_H
|
|
|
|
#define READ_XML_CONFIG_PROTOCOL_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include "config_protocol.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "pugixml.hpp"
|
|
|
|
#include "pugixml_util.hpp"
|
2020-01-18 22:19:20 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
ConfigProtocol read_xml_config_protocol(pugi::xml_node& Node,
|
|
|
|
const pugiutil::loc_data& loc_data);
|
|
|
|
|
|
|
|
#endif
|