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

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

Class Position qui encapsule la génération des fichiers de positions

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