[Tool] Add missing file
This commit is contained in:
parent
c4d3e7c50c
commit
b8e4675a3a
|
@ -0,0 +1,22 @@
|
||||||
|
/************************************************************************
|
||||||
|
* A header file for SimulationSetting class, including critical data declaration
|
||||||
|
* Please include this file only for using any SimulationSetting data structure
|
||||||
|
* Refer to simulation_setting.h for more details
|
||||||
|
***********************************************************************/
|
||||||
|
|
||||||
|
/************************************************************************
|
||||||
|
* Create strong id for Simulation Clock to avoid illegal type casting
|
||||||
|
***********************************************************************/
|
||||||
|
#ifndef SIMULATION_SETTING_FWD_H
|
||||||
|
#define SIMULATION_SETTING_FWD_H
|
||||||
|
|
||||||
|
#include "vtr_strong_id.h"
|
||||||
|
|
||||||
|
struct simulation_clock_id_tag;
|
||||||
|
|
||||||
|
typedef vtr::StrongId<simulation_clock_id_tag> SimulationClockId;
|
||||||
|
|
||||||
|
/* Short declaration of class */
|
||||||
|
class SimulationSetting;
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue