#ifdef VHDL /* * $Id: Vhdl_generate_file_model.cpp 113 2009-04-14 18:39:12Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include "Common/include/Environment.h" #include #include namespace morpheo { namespace behavioural { void Vhdl::generate_file_model(void) { log_printf(FUNC,Behavioural,"generate_file_model","Begin"); directory(); std::string filename = MORPHEO_VHDL + "/" + _name + VHDL_EXTENSION; msg_printf(INFORMATION,_("Generate file \"%s\"."),filename.c_str()); std::ofstream file; file.open(filename.c_str(),std::ios::out | std::ios::trunc); file << get_model (0,filename,_name); file.close(); log_printf(FUNC,Behavioural,"generate_file_model","End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif