source: trunk/IPs/systemC/Environment/Data/include/Entity.h @ 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: 399 bytes
Line 
1#ifndef ENVIRONMENT_DATA_ENTITY_H
2#define ENVIRONMENT_DATA_ENTITY_H
3
4#include "Segment.h"
5
6namespace environment {
7namespace data {
8
9  class Entity
10  {
11  public : bool      present;
12  public : Segment * segment;
13
14
15  public : Entity (bool present);
16  public : Entity (bool present, Segment * segment);
17  public : friend std::ostream& operator<< (std::ostream& output, Entity & x);
18  };
19
20};
21};
22#endif
Note: See TracBrowser for help on using the repository browser.