OpenFPGA/openfpga/src/fpga_bitstream/fabric_bitstream_fwd.h

24 lines
595 B
C++

/**************************************************
* This file includes only declarations for
* the data structures for fabric-dependent bitstream database
* Please refer to fabric_bitstream.h for more details
*************************************************/
#ifndef FABRIC_BITSTREAM_FWD_H
#define FABRIC_BITSTREAM_FWD_H
#include "vtr_strong_id.h"
/* begin namespace openfpga */
namespace openfpga {
/* Strong Ids for BitstreamContext */
struct fabric_bit_id_tag;
typedef vtr::StrongId<fabric_bit_id_tag> FabricBitId;
class FabricBitstream;
} /* end namespace openfpga */
#endif