#ifdef VHDL /* * $Id: Vhdl_get_header.cpp 81 2008-04-15 18:40:01Z rosiere $ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include "Behavioural/include/Version.h" #include #include namespace morpheo { namespace behavioural { #undef FUNCTION #define FUNCTION "Vhdl::get_header" std::string Vhdl::get_header(uint32_t depth, std::string filename) { log_printf(FUNC,Behavioural,FUNCTION,"Begin"); std::string tab = std::string(depth,'\t'); std::ostringstream text; time_t current_time; time (¤t_time); text << tab << "-------------------------------------------------------------------------------" << std::endl << tab << "-- file : " << filename << std::endl << tab << "-- date : " << ctime (¤t_time ) << tab << "-- morpheo version : " << MORPHEO_VERSION << std::endl << tab << "-- comment : it's a autogenerated file : don't modify" << std::endl << tab << "-------------------------------------------------------------------------------" << std::endl; log_printf(FUNC,Behavioural,FUNCTION,"End"); return text.str(); }; }; // end namespace behavioural }; // end namespace morpheo #endif