2020-04-23 19:59:09 -05:00
|
|
|
/**************************************************
|
2022-10-06 19:08:50 -05:00
|
|
|
* This file includes only declarations for
|
2020-04-23 19:59:09 -05:00
|
|
|
* the data structures for netlist managers
|
|
|
|
* Please refer to netlist_manager.h for more details
|
|
|
|
*************************************************/
|
|
|
|
#ifndef NETLIST_MANAGER_FWD_H
|
|
|
|
#define NETLIST_MANAGER_FWD_H
|
|
|
|
|
|
|
|
#include "vtr_strong_id.h"
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
|
|
|
/* Strong Ids for ModuleManager */
|
|
|
|
struct netlist_id_tag;
|
|
|
|
struct preprocessing_flag_id_tag;
|
|
|
|
|
|
|
|
typedef vtr::StrongId<netlist_id_tag> NetlistId;
|
|
|
|
typedef vtr::StrongId<preprocessing_flag_id_tag> PreprocessingFlagId;
|
|
|
|
|
|
|
|
class NetlistManager;
|
|
|
|
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
2022-10-06 19:08:50 -05:00
|
|
|
#endif
|