pollymc/launcher/StringUtils.h
flow ab6c7244fc
refactor: move FS's toStdString to StringUtils
This is so that anyone can use it :)

Signed-off-by: flow <flowlnlnln@gmail.com>
2022-11-04 16:53:25 -03:00

21 lines
356 B
C++

#pragma once
#include <QString>
namespace StringUtils {
#if defined Q_OS_WIN32
inline std::wstring toStdString(QString s)
{
return s.toStdWString();
}
#else
inline std::string toStdString(QString s)
{
return s.toStdString();
}
#endif
int naturalCompare(const QString& s1, const QString& s2, Qt::CaseSensitivity cs);
} // namespace StringUtils