|
Last change
on this file since 141 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:
400 bytes
|
| Line | |
|---|
| 1 | #include "../include/Sim2OS.h" |
|---|
| 2 | |
|---|
| 3 | namespace environment { |
|---|
| 4 | namespace sim2os { |
|---|
| 5 | |
|---|
| 6 | Sim2OS::Sim2OS (std::string name, |
|---|
| 7 | Parameters * param) |
|---|
| 8 | { |
|---|
| 9 | this->name = name; |
|---|
| 10 | this->param = param; |
|---|
| 11 | this->num_service = SERVICE_UNDEFINED; |
|---|
| 12 | this->result = (void *)-1; |
|---|
| 13 | this->error = 1; |
|---|
| 14 | this->nb_cycle = 0; |
|---|
| 15 | } |
|---|
| 16 | |
|---|
| 17 | Sim2OS::~Sim2OS (void) |
|---|
| 18 | { |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | }; |
|---|
| 22 | }; |
|---|
Note: See
TracBrowser
for help on using the repository browser.