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
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Entity.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14#undef  FUNCTION
15#define FUNCTION "Entity::get_type"
16  std::string Entity::get_type (void)
17  {
18    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
19    std::string _return = _type;
20    log_printf(FUNC,Behavioural,FUNCTION,"End");
21
22    return _return;
23  };
24
25}; // end namespace behavioural         
26}; // end namespace morpheo
Note: See TracBrowser for help on using the repository browser.