|
Last change
on this file since 109 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:
281 bytes
|
| Line | |
|---|
| 1 | #include "../include/Entity.h"
|
|---|
| 2 |
|
|---|
| 3 | namespace environment {
|
|---|
| 4 | namespace data {
|
|---|
| 5 |
|
|---|
| 6 | Entity::Entity (bool present)
|
|---|
| 7 | {
|
|---|
| 8 | this->present = present;
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | Entity::Entity (bool present ,
|
|---|
| 12 | Segment * segment )
|
|---|
| 13 | {
|
|---|
| 14 | this->present = present;
|
|---|
| 15 | this->segment = segment;
|
|---|
| 16 | }
|
|---|
| 17 |
|
|---|
| 18 | };
|
|---|
| 19 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.