blob: 020398f7860d52a4325edd4e6dade57f91a8d42e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|