OpenFPGA/openfpga/src/base/basic_command.h

22 lines
630 B
C++

#ifndef BASIC_COMMAND_H
#define BASIC_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_basic_commands(openfpga::Shell<OpenfpgaContext>& shell);
} /* end namespace openfpga */
#endif