#ifdef POSITION /* * $Id$ * * [ Description ] * */ #include "Behavioural/include/Interface.h" namespace morpheo { namespace behavioural { void Interface::port_map (void * entity, void * interface) { log_printf(FUNC,Behavioural,"port_map","Begin"); _is_map = true ; _entity_map = entity ; _interface_map = interface; log_printf(FUNC,Behavioural,"port_map","End"); }; }; // end namespace behavioural }; // end namespace morpheo #endif