source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_get_name.cpp @ 146

Last change on this file since 146 was 81, checked in by rosiere, 16 years ago
  • Finish Environment (and test)
  • Continue predictor_unit
  • Add external tools
  • svn keyword "Id" set
  • Property svn:keywords set to Id
File size: 424 bytes
Line 
1/*
2 * $Id: Interface_get_name.cpp 81 2008-04-15 18:40:01Z rosiere $
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.