OpenFPGA/libopenfpga/libfabrickey/src/fabric_key_fwd.h

25 lines
867 B
C
Raw Normal View History

2020-06-12 01:07:04 -05:00
/************************************************************************
* A header file for FabricKey class, including critical data declaration
* Please include this file only for using any TechnologyLibrary data structure
* Refer to fabric_key.h for more details
***********************************************************************/
/************************************************************************
* Create strong id for FabricKey to avoid illegal type casting
***********************************************************************/
#ifndef FABRIC_KEY_FWD_H
#define FABRIC_KEY_FWD_H
#include "vtr_strong_id.h"
struct fabric_region_id_tag;
2020-06-12 01:07:04 -05:00
struct fabric_key_id_tag;
typedef vtr::StrongId<fabric_region_id_tag> FabricRegionId;
2020-06-12 01:07:04 -05:00
typedef vtr::StrongId<fabric_key_id_tag> FabricKeyId;
/* Short declaration of class */
class FabricKey;
#endif