source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interfaces_print.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: 592 bytes
Line 
1/*
2 * $Id: Interfaces_print.cpp 81 2008-04-15 18:40:01Z rosiere $
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interfaces.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14
15#undef  FUNCTION
16#define FUNCTION "Interfaces::operator<<"
17  std::ostream& operator<< (std::ostream& output_stream ,
18                            morpheo::behavioural::Interfaces & x)
19  {
20    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
21    output_stream << x.get_interface () << std::endl;
22    log_printf(FUNC,Behavioural,FUNCTION,"End");
23    return output_stream;
24  };
25
26}; // end namespace behavioural         
27}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.