source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_print.cpp @ 58

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

Modif mineur : ajout d'info de débug

Release non stable

File size: 579 bytes
RevLine 
[29]1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interfaces.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
[43]14
15#undef  FUNCTION
16#define FUNCTION "Interfaces::operator<<"
[31]17  ostream& operator<< (ostream& output_stream ,
[29]18                       morpheo::behavioural::Interfaces & x)
19  {
[43]20    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
[29]21    output_stream << x.get_interface () << endl;
[43]22    log_printf(FUNC,Behavioural,FUNCTION,"End");
[29]23    return output_stream;
24  };
25
26}; // end namespace behavioural         
27}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.