mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-28 08:53:37 +00:00
14 lines
289 B
C++
14 lines
289 B
C++
#include "search/search_quality/assessment_tool/helpers.hpp"
|
|
|
|
#include "base/string_utils.hpp"
|
|
|
|
QString ToQString(strings::UniString const & s)
|
|
{
|
|
return QString::fromUtf8(strings::ToUtf8(s).c_str());
|
|
}
|
|
|
|
QString ToQString(std::string const & s)
|
|
{
|
|
return QString::fromUtf8(s.c_str());
|
|
}
|