| 68 | } |
| 69 | |
| 70 | void Manager::AppendVar(const wxString& name, |
| 71 | const std::vector<double>& min_vals, |
| 72 | const std::vector<double>& max_vals, |
| 73 | int time, |
| 74 | bool sync_with_global_time, |
| 75 | bool fixed_scale) |
| 76 | { |
| 77 | bool tm_variant = min_vals.size() > 1; |
| 78 | Entry e(name, time, tm_variant, sync_with_global_time && tm_variant, |
| 79 | fixed_scale, min_vals, max_vals); |
| 80 | vars.push_back(e); |
| 81 | } |
| 82 | |
| 83 | void Manager::RemoveVar(int var) |
| 84 | { |
no test coverage detected