| 43 | static Thread thread; |
| 44 | |
| 45 | bool ScriptUtils::matchPattern(const std::string &pattern, const std::string &tested) { |
| 46 | std::regex patternRegex(pattern); |
| 47 | return regex_match(tested, patternRegex); |
| 48 | } |
| 49 | |
| 50 | /* Remove a File. */ |
| 51 | Result ScriptUtils::removeFile(const std::string &file, bool isARG) { |
nothing calls this directly
no outgoing calls
no test coverage detected