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