source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_get_type.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: 476 bytes
RevLine 
[42]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_type"
[75]16  std::string Entity::get_type (void)
[42]17  {
[43]18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[75]19    std::string _return = _type;
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"End");
21
22    return _return;
[42]23  };
24
25}; // end namespace behavioural         
26}; // end namespace morpheo
Note: See TracBrowser for help on using the repository browser.