| 333 | } |
| 334 | |
| 335 | bool gnuplot::terminal_is_available(std::string_view term) { |
| 336 | std::string msg = run_and_get_output("gnuplot -e \"set terminal " + |
| 337 | std::string(term.data()) + "\" 2>&1"); |
| 338 | return msg.empty(); |
| 339 | } |
| 340 | |
| 341 | std::tuple<int, int, int> gnuplot::gnuplot_version() { |
| 342 | static std::tuple<int, int, int> version{0, 0, 0}; |
nothing calls this directly
no test coverage detected