source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Component_get_entity.cpp @ 42

Last change on this file since 42 was 42, checked in by rosiere, 17 years ago

Modification des classes d'encapsulation des interfaces :

  • gère les signaux à écrire dans le vhdl
  • les traces pour le testbench
  • la génération des vhdl structurelles

-> test sur la Pattern History Table

File size: 357 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Component.h"
9
10namespace morpheo              {
11namespace behavioural          {
12
13  string Component::get_entity (void)
14  {
15    ostringstream text;
16    text << *(_entity); 
17    return text.str();
18  };
19
20}; // end namespace behavioural         
21}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.