25 lines
722 B
C++
25 lines
722 B
C++
#ifndef COMMAND_ECHO_H
|
|
#define COMMAND_ECHO_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "command.h"
|
|
#include "command_context.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* Begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
void print_command_options(const Command& cmd);
|
|
|
|
void print_command_context(const Command& cmd,
|
|
const CommandContext& cmd_context);
|
|
|
|
} /* End namespace openfpga */
|
|
|
|
#endif
|