|
Last change
on this file since 82 was
81,
checked in by rosiere, 18 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 | |
|---|
| 3 | namespace environment { |
|---|
| 4 | namespace 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.