#ifdef VHDL /* * $Id: Vhdl_set_body.cpp 94 2008-12-15 11:04:03Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include "Common/include/Tabulation.h" #include namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Vhdl::set_body" void Vhdl::set_body (std::string text) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); set_body(0, text); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Vhdl::set_body" void Vhdl::set_body (uint32_t depth, std::string text) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); set_list(_list_body, morpheo::tab(depth)+text); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Vhdl::set_body" void Vhdl::set_body (uint32_t depth, Vhdl * vhdl) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); std::string tab=morpheo::tab(depth); for (std::list::iterator it=vhdl->_list_body.begin(); it!=vhdl->_list_body.end(); ++it) set_list(_list_body,tab+*it); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif