Welcome to mirror list, hosted at ThFree Co, Russian Federation.

helpers.hpp « assessment_tool « search_quality « search - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f72b873f1aa14aeb48e672fd7e7f8b49b12df941 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#pragma once

#include <string>
#include <utility>

#include <QtCore/QString>

namespace strings
{
class UniString;
}

QString ToQString(strings::UniString const & s);
QString ToQString(std::string const & s);

template <typename Layout, typename... Args>
Layout * BuildLayoutWithoutMargins(Args &&... args)
{
  auto * layout = new Layout(std::forward<Args>(args)...);
  layout->setContentsMargins(0 /* left */, 0 /* top */, 0 /* right */, 0 /* bottom */);
  return layout;
}