source: trunk/IPs/systemC/Environment/Data/src/Entity_print.cpp @ 88

Last change on this file since 88 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: 284 bytes
Line 
1#include "../include/Entity.h"
2
3namespace environment {
4namespace data {
5
6  std::ostream& operator<< (std::ostream& output, Entity & x)
7  {
8    output << "present : " << x.present;
9    if (x.present == true)
10      output << std::endl << *x.segment;
11   
12    return output;
13  }
14
15};
16};
Note: See TracBrowser for help on using the repository browser.