| 12 | namespace advss { |
| 13 | |
| 14 | static QString varOrNum(const NumberVariable<int> &v) |
| 15 | { |
| 16 | if (!v.IsFixedType()) { |
| 17 | return QString::fromStdString( |
| 18 | GetWeakVariableName(v.GetVariable())); |
| 19 | } |
| 20 | return QString::number(v.GetFixedValue()); |
| 21 | } |
| 22 | |
| 23 | bool SourceInteractionStep::Save(obs_data_t *obj) const |
| 24 | { |
no test coverage detected