diff --git a/libopenfpga/libpcf/src/io/pcf_writer.h b/libopenfpga/libpcf/src/io/pcf_writer.h new file mode 100644 index 000000000..4d7551efc --- /dev/null +++ b/libopenfpga/libpcf/src/io/pcf_writer.h @@ -0,0 +1,21 @@ +#ifndef PCF_WRITER_H +#define PCF_WRITER_H +/******************************************************************** + * Include header files required by the data structure definition + *******************************************************************/ +#include +#include +#include +#include +#include "pcf_data.h" + +/* Begin namespace openfpga */ +namespace openfpga { + +/* Write a .pcf file from an object */ +int write_pcf(const char* fname, + const PcfData& pcf_data); + +} /* End namespace openfpga*/ + +#endif