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