OpenFPGA/libs/libopenfpgashell/src/shell_fwd.h

21 lines
549 B
C
Raw Normal View History

2020-01-21 18:24:49 -06:00
#ifndef SHELL_FWD_H
#define SHELL_FWD_H
#include "vtr_strong_id.h"
/* Begin namespace openfpga */
namespace openfpga {
2020-01-21 18:24:49 -06:00
/*********************************************************************
* A strong id for the options used by a command
2020-01-21 18:24:49 -06:00
********************************************************************/
struct shell_command_id_tag;
struct shell_command_class_id_tag;
2020-01-21 18:24:49 -06:00
typedef vtr::StrongId<shell_command_id_tag> ShellCommandId;
typedef vtr::StrongId<shell_command_class_id_tag> ShellCommandClassId;
2020-01-21 18:24:49 -06:00
} /* End namespace openfpga */
2020-01-21 18:24:49 -06:00
#endif