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

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

Modif mineur : ajout d'info de débug

Release non stable

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