18 lines
669 B
C
18 lines
669 B
C
#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"
|
|
#include "pugixml.hpp"
|
|
#include "pugixml_util.hpp"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
ConfigProtocol read_xml_config_protocol(pugi::xml_node& Node,
|
|
const pugiutil::loc_data& loc_data);
|
|
|
|
#endif
|