OpenFPGA/libs/libarchopenfpga/src/write_xml_technology_library.h

18 lines
651 B
C
Raw Normal View History

2020-01-17 21:02:56 -06:00
#ifndef WRITE_XML_TECHNOLOGY_LIBRARY_H
#define WRITE_XML_TECHNOLOGY_LIBRARY_H
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include <fstream>
2020-01-17 21:02:56 -06:00
#include "technology_library.h"
/********************************************************************
* Function declaration
*******************************************************************/
void write_xml_technology_library(std::fstream& fp, const char* fname,
2020-01-17 21:02:56 -06:00
const TechnologyLibrary& tech_lib);
#endif