DumpDVD/DumpDVD/Utils.hpp

12 lines
324 B
C++
Raw Permalink Normal View History

2023-03-15 06:59:59 +00:00
#ifndef _LI_UTILS
#include <string>
namespace Li {
class Utils {
public:
2023-03-17 08:23:19 +00:00
static std::string GetDocumentsFolder();
2023-03-15 06:59:59 +00:00
static std::string HumanReadableByteStr(uint64_t bytes);
2023-03-21 10:12:28 +00:00
static void ShowErrorMessage(std::string error);
2023-03-16 19:26:43 +00:00
static bool CompareStringCaseInsensitive(std::string input, std::string compare);
2023-03-15 06:59:59 +00:00
};
}
#endif