source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_get_interfaces.cpp @ 43

Last change on this file since 43 was 43, checked in by rosiere, 17 years ago

Modif mineur : ajout d'info de débug

Release non stable

File size: 807 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Entity.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Entity::get_interfaces"
16  string Entity::get_interfaces (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19    ostringstream text;
20    text << *(_interfaces); 
21    log_printf(FUNC,Behavioural,FUNCTION,"End");
22    return text.str();
23  };
24
25#undef  FUNCTION
26#define FUNCTION "Entity::get_interfaces_list"
27  Interfaces * Entity::get_interfaces_list (void)
28  {
29    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
30    Interfaces * _return = _interfaces; 
31    log_printf(FUNC,Behavioural,FUNCTION,"End");
32    return _return;
33  };
34 
35
36}; // end namespace behavioural         
37}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.