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