| 534 | } |
| 535 | |
| 536 | bool IdfObject_Impl::pushString() { |
| 537 | bool result = IdfObject_Impl::pushString(std::string(), true); |
| 538 | if (result) { |
| 539 | this->emitChangeSignals(); |
| 540 | } |
| 541 | return result; |
| 542 | } |
| 543 | |
| 544 | bool IdfObject_Impl::pushString(bool checkValidity) { |
| 545 | return IdfObject_Impl::pushString(std::string(), checkValidity); |
no test coverage detected