/************************************************** * This file includes only declarations for * the data structures to describe multiplexer structures * Please refer to mux_graph.h for more details *************************************************/ #ifndef MUX_GRAPH_FWD_H #define MUX_GRAPH_FWD_H #include "vtr_strong_id.h" /* Strong Ids for MUXes */ struct mux_node_id_tag; struct mux_edge_id_tag; struct mux_mem_id_tag; struct mux_input_id_tag; struct mux_output_id_tag; typedef vtr::StrongId MuxNodeId; typedef vtr::StrongId MuxEdgeId; typedef vtr::StrongId MuxMemId; typedef vtr::StrongId MuxInputId; typedef vtr::StrongId MuxOutputId; class MuxGraph; #endif