22 lines
657 B
C++
22 lines
657 B
C++
#ifndef OPENFPGA_SETUP_COMMAND_H
|
|
#define OPENFPGA_SETUP_COMMAND_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "shell.h"
|
|
#include "openfpga_context.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
void add_openfpga_setup_commands(openfpga::Shell<OpenfpgaContext>& shell);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|