DumpDVD/DumpDVD/Utils.hpp

12 lines
324 B
C++

#ifndef _LI_UTILS
#include <string>
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