| 3014 | } |
| 3015 | |
| 3016 | int ParmParse::querytable (std::string_view name, std::vector<std::vector<double>>& ref) const |
| 3017 | { |
| 3018 | std::string table_s; |
| 3019 | int r = query(name, table_s); |
| 3020 | if (r) { |
| 3021 | read_table_2d(ref, table_s); |
| 3022 | } |
| 3023 | return r; |
| 3024 | } |
| 3025 | |
| 3026 | int ParmParse::querytable (std::string_view name, std::vector<std::vector<float>>& ref) const |
| 3027 | { |
no test coverage detected