source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_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: 424 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interface.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14  std::string Interface::get_name (void)
15  {
16    log_printf(FUNC,Behavioural,"get_name","Begin");
17    std::string res = _name;
18    log_printf(FUNC,Behavioural,"get_name","End");
19    return res;
20  };
21
22}; // end namespace behavioural         
23}; // end namespace morpheo
Note: See TracBrowser for help on using the repository browser.