source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Signal_get_name.cpp @ 75

Last change on this file since 75 was 75, checked in by rosiere, 16 years ago

Update all component (except front_end) to :

  • new statistics model
  • no namespace std
File size: 489 bytes
RevLine 
[42]1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Signal.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
[43]14#undef  FUNCTION
15#define FUNCTION "Signal::get_name"
[75]16  std::string Signal::get_name (void)
[42]17  {
[43]18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[75]19    std::string _return = _name;
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"End");
21    return _return;
[42]22  };
23
24}; // end namespace behavioural         
25}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.