2020-01-18 22:19:20 -06:00
|
|
|
#ifndef WRITE_XML_CONFIG_PROTOCOL_H
|
|
|
|
#define WRITE_XML_CONFIG_PROTOCOL_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <fstream>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2020-01-18 22:19:20 -06:00
|
|
|
#include "circuit_library.h"
|
2022-10-06 19:08:50 -05:00
|
|
|
#include "config_protocol.h"
|
2020-01-18 22:19:20 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
void write_xml_config_protocol(std::fstream& fp, const char* fname,
|
2020-01-18 22:19:20 -06:00
|
|
|
const ConfigProtocol& config_protocol,
|
|
|
|
const CircuitLibrary& circuit_lib);
|
|
|
|
|
|
|
|
#endif
|