#ifdef VHDL /* * $Id: Vhdl_set_type.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_type" void Vhdl::set_type (std::string name , std::string type ) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); set_list(_list_type, "type "+ name + "\tis " + type); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif