| 74 | } |
| 75 | |
| 76 | void SimDataBlock::SubstitutionStatement::replaceValue(const char* value) |
| 77 | { |
| 78 | dFree(this->mValue); |
| 79 | this->mValue = dStrdup(value); |
| 80 | } |
| 81 | |
| 82 | // this is the copy-constructor for creating temp-clones. |
| 83 | SimDataBlock::SimDataBlock(const SimDataBlock& other, bool temp_clone) : SimObject(other, temp_clone) |
no test coverage detected