[lib] developing pcf reader
This commit is contained in:
parent
d197010ba3
commit
079a502153
|
@ -0,0 +1,20 @@
|
||||||
|
#ifndef PCF_READER_H
|
||||||
|
#define PCF_READER_H
|
||||||
|
/********************************************************************
|
||||||
|
* Include header files required by the data structure definition
|
||||||
|
*******************************************************************/
|
||||||
|
#include <stddef.h>
|
||||||
|
#include <array>
|
||||||
|
#include <map>
|
||||||
|
#include <fstream>
|
||||||
|
#include "pcf_data.h"
|
||||||
|
|
||||||
|
/* Begin namespace openfpga */
|
||||||
|
namespace openfpga {
|
||||||
|
|
||||||
|
/* Parse a .pcf file through a stream, return an object which contains all the data */
|
||||||
|
PcfData read_pcf(const char* fname);
|
||||||
|
|
||||||
|
} /* End namespace openfpga*/
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue