/* * $Id: Model.cpp 131 2009-07-08 18:40:08Z 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); default_type = MODEL_SYSTEMC; default_debug = false; 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