19 lines
446 B
C
19 lines
446 B
C
|
#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
|