19 lines
468 B
C++
19 lines
468 B
C++
/**************************************************
|
|
* This file includes only declarations for
|
|
* the data structures to describe decoders
|
|
* Please refer to decoder_library.h for more details
|
|
*************************************************/
|
|
#ifndef DECODER_LIBRARY_FWD_H
|
|
#define DECODER_LIBRARY_FWD_H
|
|
|
|
#include "vtr_strong_id.h"
|
|
|
|
/* Strong Ids for MUXes */
|
|
struct decoder_id_tag;
|
|
|
|
typedef vtr::StrongId<decoder_id_tag> DecoderId;
|
|
|
|
class DecoderLibrary;
|
|
|
|
#endif
|