/* * $Id: Model_print.cpp 113 2009-04-14 18:39:12Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Model.h" namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Model::print" void Model::print (void) { log_begin(Behavioural,FUNCTION); msgInformation("Model Information [type, model simulation, debug verbosity]\n"); for (std::map::iterator it=models.begin(); it!=models.end(); ++it) msgInformation(" * %s\t%s\t%s\n",(it->first).c_str(), toString(it->second.type).c_str(), toString(it->second.debug).c_str()); log_end(Behavioural,FUNCTION); } }; // end namespace behavioural }; // end namespace morpheo