| 10 | namespace advss { |
| 11 | |
| 12 | std::string GetDataFilePath(const std::string &file) |
| 13 | { |
| 14 | std::string root_path = obs_get_module_data_path(obs_current_module()); |
| 15 | if (!root_path.empty()) { |
| 16 | return root_path + "/" + file; |
| 17 | } |
| 18 | return ""; |
| 19 | } |
| 20 | |
| 21 | QString GetDefaultSettingsSaveLocation() |
| 22 | { |
no test coverage detected