2021-01-16 18:15:31 -06:00
|
|
|
#ifndef WRITE_XML_REPACK_DESIGN_CONSTRAINTS_H
|
|
|
|
#define WRITE_XML_REPACK_DESIGN_CONSTRAINTS_H
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
#include <fstream>
|
2022-10-06 19:08:50 -05:00
|
|
|
|
2021-01-16 18:15:31 -06:00
|
|
|
#include "repack_design_constraints.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
2022-10-06 19:08:50 -05:00
|
|
|
int write_xml_repack_design_constraints(
|
|
|
|
const char* fname, const RepackDesignConstraints& repack_design_constraints);
|
2021-01-16 18:15:31 -06:00
|
|
|
|
|
|
|
#endif
|