#ifdef VHDL /* * $Id: Rename_unit_vhdl.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Rename_unit/include/Rename_unit.h" #include "Behavioural/include/Vhdl.h" namespace morpheo { namespace behavioural { namespace core { namespace multi_ooo_engine { namespace ooo_engine { namespace rename_unit { #undef FUNCTION #define FUNCTION "Rename_unit::vhdl" void Rename_unit::vhdl (void) { log_begin(Rename_unit,FUNCTION); Vhdl * vhdl = new Vhdl (_name); _interfaces->set_port(vhdl); _component->vhdl_instance(vhdl); vhdl->generate_file(); delete vhdl; log_end(Rename_unit,FUNCTION); }; }; // end namespace rename_unit }; // end namespace ooo_engine }; // end namespace multi_ooo_engine }; // end namespace core }; // end namespace behavioural }; // end namespace morpheo #endif