| 30 | ConfigManager config; |
| 31 | |
| 32 | std::string expandString(std::string input) { |
| 33 | input = std::regex_replace(input, std::regex("%ROOT%"), options::opts.root); |
| 34 | return std::regex_replace(input, std::regex("//"), "/"); |
| 35 | } |
| 36 | |
| 37 | std::string genFileName(std::string prefix, bool isVfo, std::string name = "") { |
| 38 | time_t now = time(0); |