| 14 | using namespace Clipper2Lib; |
| 15 | |
| 16 | void System(const std::string& filename) |
| 17 | { |
| 18 | #ifdef _WIN32 |
| 19 | system(filename.c_str()); |
| 20 | #else |
| 21 | system(("firefox " + filename).c_str()); |
| 22 | #endif |
| 23 | } |
| 24 | |
| 25 | static void DisplayAsSvgImage(const std::string& caption, FillRule fillrule, |
| 26 | const PathsD* subject, const PathsD* clip, const PathsD* solution) |
no outgoing calls
no test coverage detected