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

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

#include <string>

#include <QtWidgets/QComboBox>

class QWidget;

class LanguagesList : public QComboBox
{
public:
  explicit LanguagesList(QWidget * parent);

  void Select(std::string const & lang);
};