#ifdef VHDL /* * $Id: Vhdl_direction_toString.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::direction_toString" std::string Vhdl::direction_toString (direction_t direction) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); std::string _return; switch (direction) { case IN : _return = "in "; break; case OUT : _return = "out "; break; default : _return = " "; break; } log_printf(FUNC,Behavioural,FUNCTION,"End"); return _return; }; }; // end namespace behavioural }; // end namespace morpheo #endif