osb/source/mod_uploader/StarStringConversion.hpp

21 lines
333 B
C++
Raw Normal View History

2023-06-20 04:33:09 +00:00
#ifndef STAR_STRING_CONVERSION
#define STAR_STRING_CONVERSION
#include <QString>
#include "StarString.hpp"
namespace Star {
inline String toSString(QString const& str) {
return String(str.toUtf8().data());
}
inline QString toQString(String const& str) {
return QString::fromUtf8(str.utf8Ptr(), str.utf8Size());
}
}
#endif