/************************************************************************ * A header file for CircuitLibrary class, including critical data declaration * Please include this file only for using any CircuitLibrary data structure * Refer to circuit_library.h for more details ***********************************************************************/ /************************************************************************ * Create strong id for Circuit Models/Ports to avoid illegal type casting ***********************************************************************/ #ifndef CIRCUIT_LIBRARY_FWD_H #define CIRCUIT_LIBRARY_FWD_H #include "vtr_strong_id.h" struct circuit_model_id_tag; struct circuit_port_id_tag; struct circuit_edge_id_tag; typedef vtr::StrongId CircuitModelId; typedef vtr::StrongId CircuitPortId; typedef vtr::StrongId CircuitEdgeId; /* Short declaration of class */ class CircuitLibrary; #endif