#pragma once #include #include #include namespace Soundux { namespace Helpers { #if defined(_WIN32) std::wstring widen(const std::string &); std::string narrow(const std::wstring &); #endif bool deleteFile(const std::string &, bool = true); bool run(const std::string &); std::pair getResultCompact(const std::string &); std::pair, bool> getResult(const std::string &); } // namespace Helpers } // namespace Soundux