2020-01-23 20:10:53 -06:00
|
|
|
#ifndef OPENFPGA_READ_ARCH_COMMAND_H
|
|
|
|
#define OPENFPGA_READ_ARCH_COMMAND_H
|
2020-01-23 15:42:49 -06:00
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Include header files that are required by function declaration
|
|
|
|
*******************************************************************/
|
2020-01-23 20:10:53 -06:00
|
|
|
#include "command.h"
|
|
|
|
#include "command_context.h"
|
2020-01-23 15:42:49 -06:00
|
|
|
#include "openfpga_context.h"
|
|
|
|
|
|
|
|
/********************************************************************
|
|
|
|
* Function declaration
|
|
|
|
*******************************************************************/
|
|
|
|
|
|
|
|
/* begin namespace openfpga */
|
|
|
|
namespace openfpga {
|
|
|
|
|
2020-01-23 20:10:53 -06:00
|
|
|
void read_arch(OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
2020-01-23 15:42:49 -06:00
|
|
|
|
2020-01-23 21:58:15 -06:00
|
|
|
void write_arch(const OpenfpgaContext& openfpga_context,
|
|
|
|
const Command& cmd, const CommandContext& cmd_context);
|
|
|
|
|
2020-01-23 15:42:49 -06:00
|
|
|
} /* end namespace openfpga */
|
|
|
|
|
|
|
|
#endif
|