source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Vhdl_set_list.cpp @ 43

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 565 bytes
Line 
1#ifdef VHDL
2
3/*
4 * $Id$
5 *
6 * [ Description ]
7 *
8 */
9
10#include "Behavioural/include/Vhdl.h"
11
12#include <sstream>
13using namespace std;
14
15namespace morpheo              {
16namespace behavioural          {
17 
18#undef  FUNCTION
19#define FUNCTION "Vhdl::set_list"
20  void Vhdl::set_list (list<string> & liste,
21                       string         text )
22  {
23    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
24    liste.push_back (text);
25    log_printf(FUNC,Behavioural,FUNCTION,"End");
26  };
27   
28}; // end namespace behavioural         
29}; // end namespace morpheo             
30
31#endif
Note: See TracBrowser for help on using the repository browser.