| 19 | } |
| 20 | |
| 21 | bool SymbolTableDb::getValue(fixmatheval::FmeValue &value, QString name) { |
| 22 | SymbolValue val; |
| 23 | if (!symbol_table->name_to_value(val, name)) { return false; } |
| 24 | value = val; |
| 25 | return true; |
| 26 | } |
| 27 | |
| 28 | void SymbolTableDb::setSymbol( |
| 29 | const QString &name, |
nothing calls this directly
no test coverage detected