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

Last change on this file since 146 was 82, checked in by rosiere, 16 years ago
  • support locale (now must "just" translate)
  • update all component with new test format
  • update all component with usage
  • New component : decod queue and prediction_unit
  • Property svn:keywords set to Id
File size: 521 bytes
Line 
1/*
2 * $Id: Component_get_name.cpp 82 2008-05-01 16:48:45Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Component.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Component::get_name"
16  std::string Component::get_name (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19
20    std::string _return = _entity->get_name();
21
22    log_printf(FUNC,Behavioural,FUNCTION,"End");
23   
24    return _return;
25  };
26 
27}; // end namespace behavioural         
28}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.