#ifdef VHDL /* * $Id$ * * [ Description ] * */ #include "Behavioural/Generic/Shifter/include/Shifter.h" #include "Behavioural/include/Vhdl.h" namespace morpheo { namespace behavioural { namespace generic { namespace shifter { void Shifter::vhdl (void) { Vhdl * vhdl = new Vhdl (_name); _interfaces->set_port (vhdl); _component ->vhdl_instance(vhdl); vhdl_declaration (vhdl); vhdl_body (vhdl); vhdl->generate_file(); delete vhdl; }; }; // end namespace shifter }; // end namespace generic }; // end namespace behavioural }; // end namespace morpheo #endif