17 lines
435 B
C
17 lines
435 B
C
|
/**************************************************
|
||
|
* 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
|
||
|
|
||
|
/* Strong Ids for MUXes */
|
||
|
struct mux_id_tag;
|
||
|
typedef vtr::StrongId<mux_id_tag> MuxId;
|
||
|
|
||
|
class MuxGraph;
|
||
|
class MuxLibrary;
|
||
|
|
||
|
#endif
|