/* * $Id: Model.cpp 129 2009-06-29 16:38:40Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Model.h" #include "Common/include/Debug.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Model::Model" Model::Model (void) { // log_begin(Behavioural,FUNCTION); set_model(NAME_true ,MODEL_SYSTEMC,true ); set_model(NAME_false,MODEL_SYSTEMC,false); // log_end(Behavioural,FUNCTION); } #undef FUNCTION #define FUNCTION "Model::~Model" Model::~Model(void) { // log_begin(Behavioural,FUNCTION); // log_end(Behavioural,FUNCTION); } }; // end namespace behavioural }; // end namespace morpheo