21 lines
622 B
C
21 lines
622 B
C
|
#ifndef OPENFPGA_LINK_ARCH_COMMAND_H
|
||
|
#define OPENFPGA_LINK_ARCH_COMMAND_H
|
||
|
|
||
|
/********************************************************************
|
||
|
* Include header files that are required by function declaration
|
||
|
*******************************************************************/
|
||
|
#include "openfpga_context.h"
|
||
|
|
||
|
/********************************************************************
|
||
|
* Function declaration
|
||
|
*******************************************************************/
|
||
|
|
||
|
/* begin namespace openfpga */
|
||
|
namespace openfpga {
|
||
|
|
||
|
void link_arch(OpenfpgaContext& openfpga_context);
|
||
|
|
||
|
} /* end namespace openfpga */
|
||
|
|
||
|
#endif
|