/* * $Id: Parameters.cpp 117 2009-05-16 14:42:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Parameters.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Parameters::Parameters" Parameters::Parameters (void) : _type ("") { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Parameters::Parameters" Parameters::Parameters (std::string type) : _type (type) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; #undef FUNCTION #define FUNCTION "Parameters::~Parameters" Parameters::~Parameters () { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); log_printf(FUNC,Behavioural,FUNCTION,"End"); }; }; // end namespace behavioural }; // end namespace morpheo