#ifndef _LI_UTILS #include namespace Li { class Utils { public: static std::string GetDocumentsFolder(); static std::string HumanReadableByteStr(uint64_t bytes); static void ShowErrorMessage(std::string error); static bool CompareStringCaseInsensitive(std::string input, std::string compare); }; } #endif