source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_print.cpp @ 31

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

Changement de classes de gestions des Interfaces.

-> simplification pour les déclarations de ports, application pour le composant Select_Priority_Fixed.
-> !!! essayer de supprimer la redondance dans les fichierx xxx_vhdl_testbench_transition.cpp

File size: 558 bytes
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/include/Interface.h"
9
10
11namespace morpheo              {
12namespace behavioural          {
13
14  ostream& operator<< (ostream& output_stream,
15                       morpheo::behavioural::Interface & x)
16  {
17    output_stream << x._name + "\t"+toString(x._localisation)+"\t"+toString(x._direction) << endl;
18    output_stream << x.get_comment() << endl;
19    output_stream << x.get_signal () << endl;
20    return output_stream;
21  };
22
23}; // end namespace behavioural         
24}; // end namespace morpheo             
Note: See TracBrowser for help on using the repository browser.