22 lines
669 B
C++
22 lines
669 B
C++
#ifndef SPICE_SUBMODULE_H
|
|
#define SPICE_SUBMODULE_H
|
|
|
|
/********************************************************************
|
|
* Include header files that are required by function declaration
|
|
*******************************************************************/
|
|
#include "netlist_manager.h"
|
|
|
|
/********************************************************************
|
|
* Function declaration
|
|
*******************************************************************/
|
|
|
|
/* begin namespace openfpga */
|
|
namespace openfpga {
|
|
|
|
void print_spice_submodule(NetlistManager& netlist_manager,
|
|
const std::string& submodule_dir);
|
|
|
|
} /* end namespace openfpga */
|
|
|
|
#endif
|