15 lines
485 B
C++
15 lines
485 B
C++
#ifndef OPENFPGA_TITLE_H
|
|
#define OPENFPGA_TITLE_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include <string>
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
std::string create_openfpga_title();
|
|
|
|
#endif
|