source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_set_comment.cpp @ 81

Last change on this file since 81 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: 508 bytes
Line 
1#ifdef POSITION
2/*
3 * $Id: Entity_set_comment.cpp 81 2008-04-15 18:40:01Z rosiere $
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::set_comment"
17  void Entity::set_comment (std::string comment)
18  {
19    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
20    _comment = _comment + comment;
21    log_printf(FUNC,Behavioural,FUNCTION,"End");
22  };
23
24}; // end namespace behavioural         
25}; // end namespace morpheo             
26#endif
Note: See TracBrowser for help on using the repository browser.