#ifdef VHDL /* * $Id: Vhdl_set_list.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Vhdl::set_list" void Vhdl::set_list (std::list & liste, std::string text ) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); liste.push_back (text); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif