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