#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Vhdl.h" #include using namespace std; namespace morpheo { namespace behavioural { string Vhdl::get_library_work (uint32_t depth) { list::iterator i = _list_library_work.begin(); string tab = string(depth,'\t'); ostringstream text; if (i != _list_library_work.end()) text << tab << endl << tab << "library work;" << endl << get_list(_list_library_work,depth,";",true); return text.str(); }; }; // end namespace behavioural }; // end namespace morpheo #endif