/* * $Id: Model_set_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::set_model" void Model::set_model (std::string component, model_type_t type, bool debug) { // log_begin(Behavioural,FUNCTION); model_t model; model.type = type ; model.debug = debug; models [component] = model; // log_end(Behavioural,FUNCTION); } }; // end namespace behavioural }; // end namespace morpheo