OpenFPGA/libopenfpga/libopenfpgashell/src/shell_fwd.h

19 lines
446 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 minishell */
namespace minishell {
/*********************************************************************
* A strong id for the options used by a command
********************************************************************/
struct shell_command_id_tag;
typedef vtr::StrongId<shell_command_id_tag> ShellCommandId;
} /* End namespace minshell */
#endif