OpenFPGA/openfpga/src/base/openfpga_build_fabric.h

24 lines
732 B
C
Raw Normal View History

#ifndef OPENFPGA_BUILD_FABRIC_H
#define OPENFPGA_BUILD_FABRIC_H
2020-02-11 18:40:37 -06:00
/********************************************************************
* Include header files that are required by function declaration
*******************************************************************/
#include "command.h"
#include "command_context.h"
#include "openfpga_context.h"
/********************************************************************
* Function declaration
*******************************************************************/
/* begin namespace openfpga */
namespace openfpga {
int build_fabric(OpenfpgaContext& openfpga_ctx,
const Command& cmd, const CommandContext& cmd_context);
2020-02-11 18:40:37 -06:00
} /* end namespace openfpga */
#endif