| 219 | } |
| 220 | |
| 221 | bool Configurations::parseFromText(const std::string& configurationsString, Configurations* base) { |
| 222 | bool success = Parser::parseFromText(configurationsString, this, base); |
| 223 | if (success) { |
| 224 | m_isFromFile = false; |
| 225 | } |
| 226 | return success; |
| 227 | } |
| 228 | |
| 229 | void Configurations::setFromBase(Configurations* base) { |
| 230 | if (base == nullptr || base == this) { |
no test coverage detected